toilahuongg/shopify-agents-kit

git-sync

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

First seen Mar 3, 2026

Installation

$ npx skills add toilahuongg/shopify-agents-kit --skill git-sync

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from toilahuongg/shopify-agents-kit · top by installs.

npx skills add toilahuongg/shopify-agents-kit

Browse all from toilahuongg/shopify-agents-kit

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 10
License LICENSE
Default branch master
Open issues 0
Status Active

Skill metadata

Parsed from SKILL.md frontmatter.

Allowed toolsBash(git:*)

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 544 B
  • docs SUMMARY.md 131 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 7 installs

SKILL.md

Git Sync

Sync local branch with remote using rebase.

  1. Fetch the latest changes from the remote repository.

- Command: git fetch origin

  1. 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.