File tree 1 file changed +6
-2
lines changed
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
73
73
* Create a branch in git for maintenance of the previous release
74
74
o on master branch, do:
75
75
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"
77
78
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
79
81
80
82
* Add new branch's name to list in src/tools/git_changelog
81
83
82
84
* Increment the major version number in src/tools/version_stamp.pl
83
85
84
86
* Run "src/tools/version_stamp.pl devel", then run autoconf
85
87
88
+ * Get the buildfarm's 'branches_of_interest.txt' file updated with the new
89
+ branch.
86
90
87
91
Creating Back-Branch Release Notes
88
92
==================================
You can’t perform that action at this time.
0 commit comments