aboutsummaryrefslogtreecommitdiffstats
path: root/admin
diff options
context:
space:
mode:
authorGlenn Morris2020-05-03 10:21:21 -0700
committerGlenn Morris2020-05-03 10:21:21 -0700
commit82c506192b5ae1a454dccfae2f41fa3ee6d5e990 (patch)
treeac9e55f02d892ff03823c6fef762218995b8c2c0 /admin
parent97146efdc62914a99cce5a9bf4db4770c4aaa3ca (diff)
downloademacs-82c506192b5ae1a454dccfae2f41fa3ee6d5e990.tar.gz
emacs-82c506192b5ae1a454dccfae2f41fa3ee6d5e990.zip
; admin/notes/git-workflow
Mention reverting on release branch.
Diffstat (limited to 'admin')
-rw-r--r--admin/notes/git-workflow11
1 files changed, 11 insertions, 0 deletions
diff --git a/admin/notes/git-workflow b/admin/notes/git-workflow
index 63e96d0397c..d109cdaa354 100644
--- a/admin/notes/git-workflow
+++ b/admin/notes/git-workflow
@@ -75,6 +75,17 @@ and add "Backport:" to the commit string. Then
75git push 75git push
76 76
77 77
78Reverting on release branch
79===========================
80
81If a commit is made to the release branch, and then it is later
82decided that this change should only be on the master branch, the
83simplest way to handle this is to revert the commit on the release
84branch, and include in the associated log entry "do not merge to master".
85(Otherwise, the reversion may get merged to master, and inadvertently
86clobber the change on master if it has been manually made there.)
87
88
78Merging release branch to the master 89Merging release branch to the master
79==================================== 90====================================
80 91