원클릭으로
sync
Sync current branch with its remote tracking branch
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Sync current branch with its remote tracking branch
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Generate a new React component with Mantine styling
Update documentation after implementing features or making changes
Run a quick architecture review via architect-reviewer agent
Generate mobile-specific React components with platform detection and safe areas
Run a quick security audit on recent changes or specific files
Generate a test file for a component, hook, or utility
| name | sync |
| description | Sync current branch with its remote tracking branch |
Syncs the current branch with its remote, handling different scenarios.
git branch --show-current
git pull origin main
Check if we're ahead, behind, or both:
git status -sb
If behind tracking branch: Pull with rebase
git pull --rebase
If ahead of tracking branch: Push
git push
If diverged: Fetch and rebase
git fetch origin
git rebase origin/<branch-name>
If no tracking branch: Set upstream and push
git push -u origin HEAD
✓ Pulled latest main
Already up-to-date.
✓ Pushed 3 commits to origin/feature/add-filters
✓ Rebased on origin/feature/add-filters
✓ Applied 2 local commits