From 4f7cea7ec5ecb792d9327d199d474bfc6d96724f Mon Sep 17 00:00:00 2001 From: HidemaruOwO Date: Wed, 16 Apr 2025 03:02:10 +0900 Subject: [PATCH] :books: change defalt branch (README.md) --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 ``` ---