We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent9994013 commit56b4da8Copy full SHA for 56b4da8
src/tools/RELEASE_CHANGES
@@ -73,16 +73,20 @@ Starting a New Development Cycle
73
* Create a branch in git for maintenance of the previous release
74
o on master branch, do:
75
git pull # be sure you have the latest "master"
76
-git push origin master:refs/heads/"new-branch-name"
+git branch "new-branch-name"
77
+git push -u origin "new-branch-name"
78
for example,
-git push origin master:refs/heads/REL_10_STABLE
79
+git branch REL_11_STABLE
80
+git push -u origin REL_11_STABLE
81
82
* Add new branch's name to list in src/tools/git_changelog
83
84
* Increment the major version number in src/tools/version_stamp.pl
85
86
* Run "src/tools/version_stamp.pl devel", then run autoconf
87
88
+* Get the buildfarm's 'branches_of_interest.txt' file updated with the new
89
+ branch.
90
91
Creating Back-Branch Release Notes
92
==================================