diff options
author | Guido Guenther <agx@sigxcpu.org> | 2007-02-02 15:10:06 +0100 |
---|---|---|
committer | Guido Guenther <agx@bogon.sigxcpu.org> | 2007-02-02 15:10:06 +0100 |
commit | d3bfa10ba8c609a3e5de2717a019239b353d03a7 (patch) | |
tree | 2ee68971a066bb4a35640658538c33dbde202ee4 /gbp.conf | |
parent | 55664883c7d0a6f42a672eca947c908cfae971e1 (diff) | |
download | git-buildpackage-d3bfa10ba8c609a3e5de2717a019239b353d03a7.tar.gz git-buildpackage-d3bfa10ba8c609a3e5de2717a019239b353d03a7.tar.bz2 git-buildpackage-d3bfa10ba8c609a3e5de2717a019239b353d03a7.zip |
Allow to specify the tag format
The format of generated tags can now be specified via the debian-tag and
upsteam-tag options. The default now puts debian tags and upstream tags into
different namespaces (Closes: #408990)
Diffstat (limited to 'gbp.conf')
-rw-r--r-- | gbp.conf | 35 |
1 files changed, 19 insertions, 16 deletions
@@ -1,29 +1,32 @@ # Configuration file for git-buildpackage and friends [DEFAULT] -# the default build command -#builder=debuild -# the default branch for upstream sources -#upstream-branch=upstream -# the default branch for the debian patch -#debian-branch=master +# the default build command: +#builder = debuild +# the default branch for upstream sources: +#upstream-branch = upstream +# the default branch for the debian patch: +#debian-branch = master +# the default tag formats used: +#upstream-tag = upstream/%(version)s +#debian-tag = debian/%(version)s -# Special options for git-buildpackage +# Options only for git-buildpackage [git-buildpackage] -#upstream-branch=dfsgclean -# Uncomment this to automatically GPG sign tags +#upstream-branch = dfsgclean +# uncomment this to automatically GPG sign tags #sign-tags = True -# Keyid to GPG sign tags with +# keyid to GPG sign tags with #keyid = 0xdeadbeef -# Push to a remote repository after a successful tag: +# push to a remote repository after a successful tag: #posttag = git-push git.example.com -# Special options for git-import-orig +# Options only for git-import-orig [git-import-orig] -#upstream-branch=newupstream -#debian-branch=dfsgclean +#upstream-branch = newupstream +#debian-branch = dfsgclean -# Special options for git-import-dsc +# Options only for git-import-dsc [git-import-dsc] -#upstream-branch=svn-upstream +#upstream-branch = svn-upstream |