]> granicus.if.org Git - postgresql/commitdiff
Use more modern instructions for creating a new dev cycle
authorAndrew Dunstan <andrew@dunslane.net>
Sun, 1 Jul 2018 11:54:51 +0000 (07:54 -0400)
committerAndrew Dunstan <andrew@dunslane.net>
Sun, 1 Jul 2018 11:55:05 +0000 (07:55 -0400)
src/tools/RELEASE_CHANGES

index b7963c2449c950c1209b28b12f1fedab128eb76b..65a1ffc83d5e87a0aabeb2f3b091f5932e6db2d7 100644 (file)
@@ -73,9 +73,11 @@ Starting a New Development Cycle
 * Create a branch in git for maintenance of the previous release
        o on master branch, do:
                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,
-               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
 
@@ -83,6 +85,8 @@ Starting a New Development Cycle
 
 * 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
 ==================================