File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -73,16 +73,20 @@ Starting a New Development Cycle
7373* Create a branch in git for maintenance of the previous release
7474 o on master branch, do:
7575 git pull # be sure you have the latest "master"
76- git push origin master:refs/heads/"new-branch-name"
76+ git branch "new-branch-name"
77+ git push -u origin "new-branch-name"
7778 for example,
78- git push origin master:refs/heads/REL_10_STABLE
79+ git branch REL_11_STABLE
80+ git push -u origin REL_11_STABLE
7981
8082* Add new branch's name to list in src/tools/git_changelog
8183
8284* Increment the major version number in src/tools/version_stamp.pl
8385
8486* Run "src/tools/version_stamp.pl devel", then run autoconf
8587
88+ * Get the buildfarm's 'branches_of_interest.txt' file updated with the new
89+ branch.
8690
8791Creating Back-Branch Release Notes
8892==================================
You can’t perform that action at this time.
0 commit comments