make_a_release: do not forget to push the devel branch out
authorArtem Bityutskiy <artem.bityutskiy@intel.com>
Thu, 7 Nov 2013 15:33:18 +0000 (17:33 +0200)
committerArtem Bityutskiy <artem.bityutskiy@intel.com>
Thu, 7 Nov 2013 15:33:18 +0000 (17:33 +0200)
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 <artem.bityutskiy@intel.com>
make_a_release.sh

index 1694ce60cec9d104db14703a50c17bb865e8aa67..e35bb0399ab69d64913a6a8afe79cd0a1e3ff358 100755 (executable)
@@ -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 <dedekind1@gmail.com>" --to bmap-tools@lists.infradead.org /proc/self/fd/0 <<END_OF_EMAIL