docs: rebase + build

This commit is contained in:
Michael Grote 2024-08-05 14:56:14 +02:00
parent 538d3ec57d
commit 096f65138e

View file

@ -104,3 +104,29 @@ Combos 3/3
| | | | | | | |
------------------- -------------------
```
## Build
```bash
qmk compile -kb ferris/sweep -km quotengrote
qmk compile -kb bastardkb/skeletyl/v2/splinky_3 -km quotengrote
```
## Rebase
```bash
git checkout master
git fetch upstream
git pull
git checkout quotengrote
git rebase -X theirs master
cd keyboards
ll | awk '{print $9}' | grep -v ferris | grep -v planck | grep -v bastardkb | xargs -n 1 git rm -r
git status
git add .
gcm remove unused keyboards
qmk compile -kb ferris/sweep -km quotengrote
qmk compile -kb bastardkb/skeletyl/v2/splinky_3 -km quotengrote
git push -f
```