pull
Installation
SKILL.md
Pull
Workflow
- Verify git status is clean or commit/stash changes before merging.
- Ensure rerere is enabled locally:
git config rerere.enabled truegit config rerere.autoupdate true
- Confirm remotes and branches:
- Ensure the
originremote exists. - Ensure the current branch is the one to receive the merge.
- Ensure the
- Fetch latest refs:
git fetch origin
- Sync the remote feature branch first:
git pull --ff-only origin $(git branch --show-current)- This pulls branch updates made remotely (for example, a GitHub auto-commit)
before merging
origin/main.
- Merge in order:
- Prefer
git -c merge.conflictstyle=zdiff3 merge origin/mainfor clearer
- Prefer
Related skills
More from openai/symphony
linear
|
54commit
Create a well-formed git commit from current changes using session history for
38land
Land a PR by monitoring conflicts, resolving them, waiting for checks, and
34debug
Investigate stuck runs and execution failures by tracing Symphony and Codex
31push
Push current branch changes to origin and create or update the corresponding
30