Git Post-Merge Repository & Branch Cleanup Skill
This skill defines the official protocol and step-by-step procedures for cleaning up local development branches, pulling the latest main from GitHub after a Pull Request is merged, and executing deep Git repository garbage collection and maintenance.
1. Strict Permission & Trigger Boundary
[!IMPORTANT] EXPLICIT HUMAN INSTRUCTION ONLY: AI agents MUST NEVER run local branch deletions, branch resets, or aggressive garbage collection automatically. This workflow is triggered ONLY when the human user explicitly instructs the agent to perform cleanup (e.g. "clean up local branches", "sync main and do git gc", "I merged the PR, please clean up").
The typical workflow is:
- AI agent finishes work on a feature branch, passes pre-commit checks, commits locally, pushes branch, and opens a PR targeting
main.- The human user reviews and merges the Pull Request on GitHub.
- The human user prompts the AI agent to perform local cleanup.
- The AI agent executes the safe post-merge cleanup runbook below.
2. Core Cleanup Principles
- Safety-First Working Tree Verification: Never switch branches or run destructive cleanups if there are uncommitted changes or uncommitted work in progress.
- Main as the Source of Truth: Always switch to
mainand pull fromorigin/mainfirst so that the newly merged PR code and history are fully present locally before deleting the feature branch. - Preserve
main(and Protected Branches): Only delete feature/task branches. Never deletemain. - Remote Reference Pruning: Prune stale remote tracking branches (
git fetch --prune origin) to keep the remote tracking tree clean. - Deep Garbage Collection: Prune unreachable reflog entries (
git reflog expire --expire=now --all) and optimize the local object store (git gc --prune=now --aggressive) to keep the.gitdirectory small, fast, and healthy. - Zero Stale Branches: After cleanup, only
mainremains as the active local branch.
3. Step-by-Step Cleanup Runbook
When the human user requests post-merge cleanup, execute these exact steps in sequence:
Step 1: Verify Working Directory State
Ensure there are no unstaged modifications or stash conflicts:
git status
If dirty, stop and check if there are uncommitted files that need to be preserved.
Step 2: Switch to main and Pull Latest Upstream
Switch to the primary release branch and pull the merged changes from GitHub:
git switch main
git pull origin main
Step 3: Prune Remote Tracking Branches
Synchronize and remove remote branch references that were deleted on GitHub after PR merge:
git fetch --prune origin
Step 4: Identify & Delete Local Feature Branches
List all local branches to inspect what needs to be removed:
git branch
Delete all local feature branches (e.g. <github-username>/main/<feature>):
# Safe delete merged branches:
git branch -d <branch-name>
# If GitHub used Squash & Merge or Rebase & Merge (which changes commit hashes):
git branch -D <branch-name>
Or delete all local branches except main in one command:
git branch | grep -v "^\* main$" | grep -v "^ main$" | xargs -r git branch -D
Step 4b: Prune & Remove Ephemeral Worktrees
If the merged feature branch was checked out in a dedicated worktree:
# 1. Identify worktree path
git worktree list
# 2. Safely remove the worktree directory (assert clean status first)
git worktree remove .worktrees/wt-<branch-slug>
# 3. Prune internal git worktree metadata
git worktree prune
Step 5: Expire Reflogs & Run Aggressive Garbage Collection
Clean up dangling commits, unreachable objects, and optimize packfiles:
git reflog expire --expire=now --all
git gc --prune=now --aggressive
Step 6: Verify Final Repository State
Verify that only main remains and the working tree is clean:
git branch
git status
4. Automated Remote Branch Cleanup on PR Close (GitHub Actions)
[!IMPORTANT] MANDATORY IN EVERY REPOSITORY: Every project repository MUST have
.github/workflows/pr-branch-cleanup.ymldeployed. This workflow is the automated counterpart to the manual local cleanup runbook above. Without it, merged feature branches accumulate on GitHub and pollute the remote branch list.
Remote feature branch deletion is automated via a GitHub Actions workflow that triggers on every PR close event (both merged and closed-without-merge). The canonical workflow is:
# .github/workflows/pr-branch-cleanup.yml
name: "PR Closed — Remote Branch Cleanup"
on:
pull_request:
types: [closed]
permissions:
contents: write
jobs:
cleanup-closed-branch:
name: "Delete Closed Remote Branch"
if: >
github.event.pull_request.head.repo.full_name == github.repository &&
github.event.pull_request.head.ref != 'main' &&
github.event.pull_request.head.ref != 'master'
runs-on: ubuntu-latest
steps:
- name: "Delete Remote Feature Branch"
uses: actions/github-script@v7
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
const headRef = context.payload.pull_request.head.ref;
try {
await github.rest.git.deleteRef({
owner: context.repo.owner,
repo: context.repo.repo,
ref: `heads/${headRef}`
});
core.info(`✅ Successfully deleted remote branch: ${headRef}`);
} catch (error) {
if (error.status === 422 || error.status === 404) {
core.info(`ℹ️ Remote branch '${headRef}' was already deleted — skipping.`);
} else {
core.setFailed(`❌ Failed to delete remote branch '${headRef}': ${error.message}`);
}
}
Safety guarantees baked into the workflow:
- Only runs on branches from the same repo (not forks).
- Never deletes
mainormaster. - Silently skips if the branch was already deleted.
- Does NOT require the PR to be merged — also cleans up abandoned/closed PRs.
Relationship to local cleanup (Sections 2–3 above):
- This workflow handles the remote branch only.
- The human user still triggers the local cleanup runbook (Sections 1–3) after merging.
- Together they ensure zero stale branches both locally and on GitHub.