mirror of
https://github.com/postgres/postgres.git
synced 2025-04-27 22:56:53 +03:00
Use more modern instructions for creating a new dev cycle
This commit is contained in:
parent
9994013ff3
commit
56b4da8c9d
@ -73,9 +73,11 @@ Starting a New Development Cycle
|
|||||||
* Create a branch in git for maintenance of the previous release
|
* Create a branch in git for maintenance of the previous release
|
||||||
o on master branch, do:
|
o on master branch, do:
|
||||||
git pull # be sure you have the latest "master"
|
git pull # be sure you have the latest "master"
|
||||||
git push origin master:refs/heads/"new-branch-name"
|
git branch "new-branch-name"
|
||||||
|
git push -u origin "new-branch-name"
|
||||||
for example,
|
for example,
|
||||||
git push origin master:refs/heads/REL_10_STABLE
|
git branch REL_11_STABLE
|
||||||
|
git push -u origin REL_11_STABLE
|
||||||
|
|
||||||
* Add new branch's name to list in src/tools/git_changelog
|
* Add new branch's name to list in src/tools/git_changelog
|
||||||
|
|
||||||
@ -83,6 +85,8 @@ Starting a New Development Cycle
|
|||||||
|
|
||||||
* Run "src/tools/version_stamp.pl devel", then run autoconf
|
* Run "src/tools/version_stamp.pl devel", then run autoconf
|
||||||
|
|
||||||
|
* Get the buildfarm's 'branches_of_interest.txt' file updated with the new
|
||||||
|
branch.
|
||||||
|
|
||||||
Creating Back-Branch Release Notes
|
Creating Back-Branch Release Notes
|
||||||
==================================
|
==================================
|
||||||
|
Loading…
x
Reference in New Issue
Block a user