Agent Skills: Git Sync

Sync with remote repository using pull --rebase. Use when you need to update your local branch with remote changes.

UncategorizedID: toilahuongg/shopify-agents-kit/git-sync

Install this agent skill to your local

pnpm dlx add-skill https://github.com/toilahuongg/Shopify-Agents-Kit/tree/HEAD/.claude/skills/git-sync

Skill Files

Browse the full folder contents for git-sync.

Download Skill

Loading file tree…

.claude/skills/git-sync/SKILL.md

Skill Metadata

Name
git-sync
Description
Sync with remote repository using pull --rebase. Use when you need to update your local branch with remote changes.

Git Sync

Sync local branch with remote using rebase.

  1. Fetch the latest changes from the remote repository.

    • Command: git fetch origin
  2. Pull and rebase the current branch on top of the remote branch.

    • Command: git pull origin HEAD --rebase
    • If there are conflicts, resolve them, then git rebase --continue.