en un clic
sync
Sync current branch with its remote tracking branch
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Menu
Sync current branch with its remote tracking branch
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Basé sur la classification professionnelle 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