diff options
author | Bdale Garbee <bdale@gag.com> | 2013-05-21 09:51:02 -0600 |
---|---|---|
committer | Bdale Garbee <bdale@gag.com> | 2013-05-21 09:51:02 -0600 |
commit | da2ea5232ae3ce287675a549b3155821f56c2c40 (patch) | |
tree | 76f4235ba47e13b37d5d35b43936ef2ea64045df /Releasing | |
parent | c336c8ed1834141b262cc227b8540cd3db3dcf18 (diff) |
restore Releasing to upstream versiondebian/1.2.1-1
Diffstat (limited to 'Releasing')
-rw-r--r-- | Releasing | 14 |
1 files changed, 6 insertions, 8 deletions
@@ -10,24 +10,22 @@ These are Bdale's notes on how to do a release. will be pulled in automatically) - update the version in configure.ac - - make absolutely sure checked-out tree is "clean" (commit as needed) + git log > ChangeLog + git commit -a + - make absolutely sure checked-out tree is "clean" - if this is an x.y release, then: git checkout -b branch-<version> + git tag -a <version> - if this is an x.y.z release, then: git checkout branch-<version> # the x.y parts only git merge master + git tag -a <version> # full x.y.z version - git log > ChangeLog - git commit -a - - git tag -a <version> + - edit .git/gbp.conf to use branch-<version> as upstream if needed git checkout debian git merge branch-<version> - - edit .git/gbp.conf to use branch-<version> as upstream and debian - as packaging branch, if needed - - verify debian/changelog is "clean" ending in last release version - craft a suitable debian/changelog entry, possibly using: git-dch --release --new-version=<version>-1 --multimaint-merge |