git-debpush
create & push a git tag with metadata for an ftp-master upload
- Provided by: git-debpush (Version: 15.5)
- Source: dgit
- Report a bug
create & push a git tag with metadata for an ftp-master upload
git debpush [option...]
git-debpush is a wrapper around git-tag(1) and git-push(1). It helps you create and push a specially formatted signed tag which indicates that the tagged commit should be pushed (or "uploaded") to a Debian-style archive.
Typically, your git server will be configured to notify an intermediary service of the new tag that you pushed. That service will then fetch your tag, check your PGP signature, do any conversion that's needed (such as producing and signing a .dsc and .changes), and upload the result to the Debian-style archive.
git-debpush is only for source-only uploads.
git-debpush is designed such that for regular uploads of your package, you should be able to just invoke it without passing any command line arguments. After you've built and tested some .debs, run dch(1) to finalise your changelog and committed the result, just type "git debpush", and the intermediary service and your distribution's autobuilder network will take care of the rest:
% git debpush
The most common exception to this is the first time you use git-debpush for a non-native package. You will need to pass a quilt mode option to inform the intermediary service which git branch format you are using, for example
% git debpush --gbp
if you are using the git branch format typically used with gbp(1). See "QUILT MODE OPTIONS", below, for the available quilt mode options.
Aside from a few sanity checks to help avoid broken uploads, git-debpush does not do anything with the information provided by the quilt mode option. It simply embeds the corresponding quilt mode in its generated tag, for use by the intermediary service.
Future invocations of git-debpush will try to read the quilt mode out of the tag generated by git-debpush for your previous upload. You can override that on the command line by passing a quilt mode option, which always takes precedence.
If you use git-debpush to make a tag but haven't pushed it yet, either because you used --tag-only|-t or because the push failed, it is okay to delete it and make another. (In the case that the push failed you can just run git-debpush again without deleting the tag, and it will retry just the push.)
However, if a tag made by this script has been pushed, then do not
The intermediary service won't let you reuse the version number anyway, and taking any of these actions may make it unnecessarily difficult to try another upload. Instead, add a new changelog stanza and run git-debpush again.
git-debpush needs to tell the intermediary git service whether this is a native or non-native package. Given historical Debian practices, it is not sufficient for either git-debpush or the intermediary service to rely on the version number in debian/changelog.
If you are using one of the 3.0 source package formats, git-debpush will just look in debian/source/format to determine whether the package is native or non-native, and you can ignore this section of the manpage.
If you are using the 1.0 source package format -- either debian/source/format does not exist, or contains the string "1.0" -- then git-debpush must be told whether the package is native or non-native. We do this using debian/source/options. If your package is non-native, execute
% echo "-sk" >>debian/source/options
If your package is native, execute
% echo "-sn" >>debian/source/options
(With source format 1.0, dpkg-source(1) decides whether the package is native or non-native based on the presence of absence of an orig.tar in .., but git-debpush is a pure git tool that never looks at tarballs.)
--quilt=baredebian+git is an alias for --quilt=baredebian.
The intermediary service will add a new patch for each commit touching the upstream source that is not already represented in debian/patches.
All changes to the upstream source will be squashed into a single patch in debian/patches, replacing any existing patches.
Prefer this to the "single-debian-patch" dpkg-source option. (See --quilt=single in dgit(1) for an explaination.)
Useful together with --dry-run|-n, for scripting.
Note that this need not actually be a branch, but any committish (see gitglossary(7)). The option name is chosen to fit what is by far the most common case.
By default git-debpush asks git-deborig(1), which searches for a suitable tag based on the upstream version in debian/changelog.
See TAINTED HISTORY in dgit(7) for details of when to use those. For other upload targets, dgit(1) has details of all known deliberatelies; but note that an upload server might define its own.
Note that unlike --force, your use of one of these options is permanently recorded in the signed tag.
Note that this does not imply doing a git force push: git-debpush never passes -f through to git push. If you need that, use git debpush -t and then do your own git force push.
Using --force or --force=check might cause the upload to fail at some later point in the process.
The valid values for check are described next. The checks fall into two groups: those checks for which git-debpush in interactive use will offer to ignore failures of the check (with a y/n prompt), and those checks whose failure always causes git-debpush to exit, unless forced.
Failures of these checks can be ignored during interactive use:
If a package has been uploaded with git-debpush before, you don't need to pass --gbp|--dpm|--quilt=mode, except in the unusual case that you are changing your git workflow.
It's better not to get into the habit of specifying the quilt mode, since that could override git-debpush's determination, and thereby end up applying the wrong quilt mode to a different package.
This might be correct, for example if you're running an old version of git-debpush, or uploading elsewhere than to Debian.
But otherwise it's likely to be a typo. Note that unknown (or inapplicable) --deliberately-* options will be silently ignored by the server.
Failures of these checks are always fatal, unless forced:
<https://wiki.debian.org/tag2upload>, tag2upload(5)
Git branch formats in use by Debian maintainers: <https://wiki.debian.org/GitPackagingSurvey>
git-debpush and this manpage were written by Sean Whitton <spwhitton@spwhitton.name> with much input from Ian Jackson <ijackson@chiark.greenend.org.uk>.