git_remote_sync

A Git rule for keeping a local branch synchronized with its remote branch before pushing changes. It checks whether the remote has new commits and handles branches that are behind or have diverged.

In plain words
What is it for?
Use it during push workflows to fetch remote changes, compare the branches, and pull and merge when required.
Why use it?
It helps prevent push failures and avoids overwriting or ignoring changes already sent to the remote repository.

Cursor rule for Cursor

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add rules/markmhendrickson/foundation/git_remote_sync
Clone the repo
git clone --depth 1 https://github.com/markmhendrickson/foundation

Made for: Cursor.

Per session 31 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,569 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00031 $0.01569
Opus 5 $0.00015 $0.00785
Sonnet 5 $0.00006 $0.00314
Haiku 4.5 $0.00003 $0.00157

Measured yesterday against content hash 553bcddbfb60, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

git_remote_sync scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.cursor/rules/git_remote_sync.mdc · 240 lines

How it starts

The opening of the file, as written. The whole thing — 240 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Git Remote Sync Rule

Purpose

Ensures agents always pull and merge remote changes before pushing, maintaining repository synchronization and preventing push rejections.

Trigger Patterns

When any of the following occur, agents MUST pull and merge before pushing:

  • Push is rejected with "non-fast-forward" or "diverged branches" error
  • git status shows "Your branch and 'origin/main' have diverged"
  • git status shows "Your branch is behind 'origin/main'"
  • Remote changes detected during commit workflow
  • Push command is about to execute
  • Any git operation that would modify remote state

Agent Actions

Step 1: Detect Remote Changes

Before pushing or when push fails:

  1. Check if remote is ahead:

    git fetch origin
    LOCAL=$(git rev-parse @)
    REMOTE=$(git rev-parse @{u} 2>/dev/null || echo "")
    
    if [ -z "$REMOTE" ]; then
      # No upstream set - proceed with push
      exit 0
    fi
    
    BASE=$(git merge-base @ @{u})
    
    if [ "$LOCAL" = "$REMOTE" ]; then
      # Already in sync
      exit 0
    elif [ "$REMOTE" = "$BASE" ]; then
      # Local is ahead - safe to push
      exit 0
    elif [ "$LOCAL" = "$BASE" ] || [ "$LOCAL" != "$REMOTE" ] && [ "$REMOTE" != "$BASE" ]; then
      # Remote is ahead or branches have diverged - MUST pull and merge
      PULL_NEEDED=true
    fi
    
  2. If push was rejected, check error message:

    # If push fails with "non-fast-forward" or "diverged"
    # Immediately proceed to pull and merge workflow
    

Step 2: Pull and Merge

If remote changes detected:

  1. Pull with merge strategy:

    CURRENT_BRANCH=$(git branch --show-current)
    git pull origin "$CURRENT_BRANCH" --no-rebase --no-edit
    
  2. Handle merge conflicts:

    • If conflicts occur, resolve them immediately
    • Stage resolved files: git add <resolved-files>
    • Complete merge: git commit --no-edit (or with merge message if needed)
    • DO NOT abort merge unless user explicitly requests

Read the full file on GitHub · 240 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. yesterday First seen · 240 lines · 31 tokens per session scan A 553bcddbfb60

Subscribe to this mod's changes

git_remote_sync is a cursor rule published in the GitHub repository markmhendrickson/foundation (2 stars, last pushed 1mo ago), licensed MIT. It adds 31 tokens to every session and 1,569 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.