From: Artem Bityutskiy Date: Thu, 7 Nov 2013 15:33:18 +0000 (+0200) Subject: make_a_release: do not forget to push the devel branch out X-Git-Tag: v3.2~46 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b8ae183d11538914ecbeef5b292f146e9d2d1b19;p=tools%2Fbmap-tools.git make_a_release: do not forget to push the devel branch out The script assumes that the devel branch is pushed out, but this is not necessarily the case. Teach 'make_a_release' script reminding about pushing the devel branch too. Change-Id: I6a0118ff886800f59700b18d13cda3a47d4cf8ad Signed-off-by: Artem Bityutskiy --- diff --git a/make_a_release.sh b/make_a_release.sh index 1694ce6..e35bb03 100755 --- a/make_a_release.sh +++ b/make_a_release.sh @@ -165,7 +165,7 @@ To finish the release: 2. copy the tarball to ftp.infradead.org 3. update the $release_branch with the contents of the 'devel' branch 4. point the master branch to the updated $release_branch branch - 5. push the master and the $release_branch branches out + 5. push the devel, master and the $release_branch branches out 6. (a bit later) push to the public tree and announce the new release in the public mailing list @@ -180,10 +180,12 @@ git branch -f $release_branch devel #4 git branch -f master $release_branch #5 +git push origin devel:devel git push origin master:master git push origin $release_branch:$release_branch #6 git push public $tag_name +git push public devel:devel git push public master:master git push public $release_branch:$release_branch git send-email --suppress-cc=all --from "Artem Bityutskiy " --to bmap-tools@lists.infradead.org /proc/self/fd/0 <