From 9641a78f1644a8feb5fb37da3179babd00a965c2 Mon Sep 17 00:00:00 2001 From: voson Date: Wed, 7 Jan 2026 11:06:15 +0800 Subject: [PATCH] fix: correct branch name from master to main in sync commands --- command/sync-oc-pull.md | 2 +- command/sync-oc-push.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/command/sync-oc-pull.md b/command/sync-oc-pull.md index fd85a85..acfd30c 100644 --- a/command/sync-oc-pull.md +++ b/command/sync-oc-pull.md @@ -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) diff --git a/command/sync-oc-push.md b/command/sync-oc-push.md index ee3726e..e3d4265 100644 --- a/command/sync-oc-push.md +++ b/command/sync-oc-push.md @@ -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