Git fetch pull
Skill MarcoAntolini/cursor-sync/cursor-skills/git-fetch-pull
Just a repo to sync my cursor skills, rules and commands.
npx -y skills add MarcoAntolini/cursor-sync --skill git-fetch-pullAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Fetches all remotes then pulls the current branch’s upstream.
SKILL.md
0.9 KB, 184 tokens by cl100k_base, as published. Nobody here has run it
Git fetch and pull
Steps
- From the repo root:
git fetch --all. git pullon the current branch (keep the repo’s configured merge/rebase behavior unless this message asks for one explicitly).- Done when: fetch finished and the current branch is up to date with its upstream, or you have reported a hard stop (see below) and taken no further git mutation.
Hard stops
- No upstream → explain; suggest
git branch -vvand setting upstream. Do not invent remotes. - Uncommitted changes block the pull → report and stop. Stash/discard only if the user says so in this message.
Guardrails
- No destructive fetch refspecs, force-pull, or
reset --hardunless explicitly requested. - Do not create commits or merge other branches as part of this run.