aboutsummaryrefslogtreecommitdiff
path: root/docs/breaking_changes.md
diff options
context:
space:
mode:
authorNick Brassel <nick@tzarc.org>2021-06-18 09:05:27 +1000
committerGitHub <noreply@github.com>2021-06-18 00:05:27 +0100
commite7ddbc394b7fa88b390435523f70cf30d6b9cea3 (patch)
tree8ea87bd35ae9bdb07f2c85db1c257ed94d3a33e5 /docs/breaking_changes.md
parent89c01970e333e346c25202e9c568b75cad4c7be5 (diff)
downloadqmk_firmware-e7ddbc394b7fa88b390435523f70cf30d6b9cea3.tar.gz
qmk_firmware-e7ddbc394b7fa88b390435523f70cf30d6b9cea3.zip
Update merge sequence to reflect no-ff, no-squash. (#13038)
Diffstat (limited to 'docs/breaking_changes.md')
-rw-r--r--docs/breaking_changes.md12
1 files changed, 8 insertions, 4 deletions
diff --git a/docs/breaking_changes.md b/docs/breaking_changes.md
index 3e85a7076..b0d56a81b 100644
--- a/docs/breaking_changes.md
+++ b/docs/breaking_changes.md
@@ -56,7 +56,7 @@ This happens immediately after the previous `develop` branch is merged.
56 * [ ] `git commit -m 'Branch point for <DATE> Breaking Change'` 56 * [ ] `git commit -m 'Branch point for <DATE> Breaking Change'`
57 * [ ] `git tag breakpoint_<YYYY>_<MM>_<DD>` 57 * [ ] `git tag breakpoint_<YYYY>_<MM>_<DD>`
58 * [ ] `git tag <next_version>` # Prevent the breakpoint tag from confusing version incrementing 58 * [ ] `git tag <next_version>` # Prevent the breakpoint tag from confusing version incrementing
59 * [ ] `git push origin develop` 59 * [ ] `git push upstream develop`
60 * [ ] `git push --tags` 60 * [ ] `git push --tags`
61 61
62## 4 Weeks Before Merge 62## 4 Weeks Before Merge
@@ -86,13 +86,17 @@ This happens immediately after the previous `develop` branch is merged.
86* `qmk_firmware` git commands 86* `qmk_firmware` git commands
87 * [ ] `git checkout develop` 87 * [ ] `git checkout develop`
88 * [ ] `git pull --ff-only` 88 * [ ] `git pull --ff-only`
89 * [ ] `git rebase origin/master`
90 * [ ] Edit `readme.md` 89 * [ ] Edit `readme.md`
91 * [ ] Remove the notes about `develop` 90 * [ ] Remove the notes about `develop`
92 * [ ] Roll up the ChangeLog into one file. 91 * [ ] Roll up the ChangeLog into one file.
93 * [ ] `git commit -m 'Merge point for <DATE> Breaking Change'` 92 * [ ] `git commit -m 'Merge point for <DATE> Breaking Change'`
94 * [ ] `git push origin develop` 93 * [ ] `git push upstream develop`
95* GitHub Actions 94* GitHub Actions
96 * [ ] Create a PR for `develop` 95 * [ ] Create a PR for `develop`
97 * [ ] Make sure travis comes back clean 96 * [ ] Make sure travis comes back clean
98 * [ ] Merge `develop` PR 97 * [ ] **Turn off 'Automatically delete head branches' for the repository** -- confirm with @qmk/directors that it is done before continuing
98* `qmk_firmware` git commands
99 * [ ] `git checkout master`
100 * [ ] `git pull --ff-only`
101 * [ ] `git merge --no-ff develop`
102 * [ ] `git push upstream master`