-
-
Notifications
You must be signed in to change notification settings - Fork 39.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update branch names to reflect configurator's new deployment. (#19999)
- Loading branch information
Showing
2 changed files
with
19 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ ChibiOS and ChibiOS-Contrib need to be updated in tandem -- the latter has a bra | |
|
||
## Getting ChibiOS | ||
|
||
* `svn` Initialisation: | ||
* `svn` Initialization: | ||
* Only needed to be done once | ||
* You might need to separately install `git-svn` package in your OS's package manager | ||
* `git svn init --stdlayout --prefix='svn/' http://svn.osdn.net/svnroot/chibios/` | ||
|
@@ -21,7 +21,7 @@ ChibiOS and ChibiOS-Contrib need to be updated in tandem -- the latter has a bra | |
|
||
## Getting ChibiOS-Contrib | ||
|
||
* `git` Initialisation: | ||
* `git` Initialization: | ||
* `git clone [email protected]:qmk/ChibiOS-Contrib` | ||
* `git remote add upstream https://github.com/ChibiOS/ChibiOS-Contrib` | ||
* `git checkout -b chibios-20.3.x upstream/chibios-20.3.x` | ||
|
@@ -57,3 +57,16 @@ ChibiOS and ChibiOS-Contrib need to be updated in tandem -- the latter has a bra | |
* `git commit -am 'Update ChibiOS to 99.9.9'` | ||
* `git push --set-upstream origin chibios-version-bump` | ||
* Make a PR to qmk_firmware with the new branch | ||
|
||
## When merging a PR containing an upgrade of ChibiOS/ChibiOS-Contrib: | ||
|
||
* Update the target branch if the merge target was `master`: | ||
* `git checkout qmk-master` | ||
* `git reset --hard develop_YYYY_qN` | ||
* `git push origin qmk-master --force-with-lease` | ||
* Update the target branch if the merge target was `develop`: | ||
* `git checkout qmk-develop` | ||
* `git reset --hard develop_YYYY_qN` | ||
* `git push origin qmk-develop --force-with-lease` | ||
|
||
Note that when merging `develop` to `master`, the first workflow should still be followed. |