fix: correct branch name from master to main in sync commands

This commit is contained in:
2026-01-07 11:06:15 +08:00
parent 9b5d10f6f9
commit 9641a78f16
2 changed files with 2 additions and 2 deletions

View File

@@ -33,7 +33,7 @@ Run `git status` to check if there are uncommitted local changes.
### 3. Pull Remote Changes
```bash
git pull origin master
git pull origin main
```
### 4. Handle Conflicts (if any)

View File

@@ -65,7 +65,7 @@ git commit -m "docs: update review command instructions"
### 6. Push to Remote Repository
```bash
git push origin master
git push origin main
```
## Notes