AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified Apache-2.0 Self-run

Git Update

skill-vrallev-agent-skills-git-update · by vRallev

Safely update a Git repository by running fetch prune and bringing local main/master branches up to date with origin/main and origin/master without checking out those branches. Use when the user asks to update, refresh, fetch and rebase, or synchronize a local repository while preserving staged and unstaged work.

No reviews yet
0 installs
47 views
0.0% view→install

Install

$ agentstack add skill-vrallev-agent-skills-git-update

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-vrallev-agent-skills-git-update)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Git Update? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Git Update

Workflow

Use scripts/git_update.sh from the repository the user wants to update:

bash /Users/ralf/.codex/skills/git-update/scripts/git_update.sh

The script:

  1. Runs git fetch --prune.
  2. If origin/master exists, updates local master.
  3. If origin/main exists, updates local main.
  4. Creates a missing local branch at the matching remote branch without checking it out.
  5. Rebases existing local branch commits onto the matching remote branch in a temporary detached worktree, then updates the local branch ref.

Safety Rules

  • Do not check out main or master in the caller's working tree.
  • Do not stash, reset, clean, or otherwise rewrite the caller's staged or unstaged changes.
  • If a rebase conflict or other error occurs, leave the caller's working tree untouched and do not move the local branch ref.
  • If local commits exist that are not on the remote branch, keep them by rebasing them onto the remote branch instead of force-aligning the local branch to origin.
  • In Codex sandboxed environments, git fetch --prune may fail when writing .git/FETCH_HEAD or other Git metadata. Treat that as an expected sandbox permission issue, not as working-tree risk; rerun the same script with the appropriate escalation/approval.

Notes

  • The usual result is that local main or master points at the same commit as origin/main or origin/master.
  • When local commits are present, the local branch may intentionally remain ahead of origin after the rebase.
  • If neither origin/main nor origin/master exists, report that there is nothing to update after the fetch.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.