diff --git a/README.md b/README.md index 5f7c6a2101..751c86237a 100644 --- a/README.md +++ b/README.md @@ -66,7 +66,7 @@ sudo -iu puyoskey Clone the Puyoskey repository, and copy the example configuration file: ```bash -git clone --recurse-submodules -b master https://git.v-sli.me/HidemaruOwO/puyoskey.git +git clone --recurse-submodules -b main https://git.v-sli.me/HidemaruOwO/puyoskey.git cd puyoskey pnpm install --frozen-lockfile cp .config/example.yml .config/default.yml @@ -187,7 +187,7 @@ systemctl enable puyoskey.timer ## Update Guide 💫 ```bash -git checkout master +git checkout main git pull git submodule update --init pnpm install --frozen-lockfile @@ -216,7 +216,7 @@ git fetch base git checkout -b stable base/stable # Switch to puyoskey branch -git checkout master +git checkout main # Merge from stable branch git merge --squash stable @@ -224,7 +224,7 @@ git merge --squash stable # Commit with an appropriate message git commit -m ":recycle: Merge updates from upstream as v2024.11.2" -git push origin master +git push origin main ``` ---