git-safety-net
- 作者仓库星标 0
- 作者更新于 2026年8月24日 15:33
- 作者仓库 claude-code-skills
Git Safety Net
Prevent losing work in a tangle of branches/stashes/rebases, and recover it forensically when something already went sideways. The commands here are all non-destructive or additive until a step is explicitly labeled destructive — recovery must never make the loss worse.
Entry router — pick the mode from what the user is worried about
| The user says / needs… | Go to |
|---|---|
| "I think I lost a commit / branch / stash", "recover the deleted X", "git reflog" | Mode A — Recover |
| "did I lose anything?", "what worktrees/stashes/branches remain?", after a messy session | Mode B — Audit & preserve |
| "is everything merged?", "what's still not on main?", before deleting old branches | Mode C — Verify merged |
| "so this never happens again", starting parallel/multi-branch work | Mode D — Prevent |
| "clean up worktrees/stashes/branches", "converge everything onto main", "only keep one main branch" | Mode E — Retire safely |
| "an audit already said it's clean, but is anything else lost?", "check again" | Mode B, starting at Step 0 — a repeat request usually means the first pass had the wrong scope, not that it looked carelessly |
When in doubt, run Mode B first, beginning with git_find_all_checkouts.sh (Step 0) and then
git_loss_audit.sh in each checkout it finds. Both are cheap and non-destructive, and they answer
"is anything at risk" for the whole machine rather than for whichever directory you started in.
The six load-bearing rules (internalize these; the modes apply them)
- Get the SCOPE right before you trust any verdict: every instrument here only sees the
repository it runs in.
git worktree list,git branch -a,git fsck,git stash list,git log --not --remotes— all of them are structurally blind to an independent clone of the same repository elsewhere on the machine. A linked worktree (git worktree add) has a gitlink file pointing home, so it shows up; a secondgit clonehas its own complete.gitand no back-reference, so it shows up in nothing. Rungit_find_all_checkouts.shfirst — otherwise a clean audit means "clean in this one directory," which is not the question the user asked. Real incident: a repository audited clean, every branch pushed, while 440 lines of a working feature sat as untracked files in a sibling clone onerm -rffrom gone. Scope has a second axis: TIME. Everyorigin/*ref is a cached snapshot from your last fetch, not the remote — sogit fetch --all --prunebefore you trust any verdict that depends on one. Read a stale cache in the right direction: for "what would be lost" it errs safe (it can over-report unpushed work, never hide it), which is why the scripts here still run offline. For "is this already upstream?" it fails the other way — work the remote already has reads as unique, so you re-ship it, and if the remote improved it meanwhile your "restore" silently reverts those improvements while looking like a rescue. Real incident: a comparison base one day old made an already-merged change look unshipped; the rescue PR would have reverted three fixes a later review added on top, one of them a security fix. - Run
git_loss_audit.shfor the authoritative "what would be lost" check within a checkout. It compares the current HEAD, every linked-worktree HEAD, local branches, and tags against every remote, then inspects each worktree for tracked/untracked changes plus stashes and dangling commits. The shortergit log HEAD --branches --tags --not --remotesmisses a detached HEAD in a different worktree and all uncommitted files. Ahead/behind counts do not answer this. Run it once per checkout that rule 1 turned up, not just in the one you happen to be in. git reflogis the first move for "I lost a commit," notfsck. Reflog records every HEAD position (commits, checkouts, resets, rebases) for ~90 days and the lost commit is usually in its top few lines.git fsckis the deeper net for commits reflog can't reach.- Preserve before you clean up — and know which backup tool can actually reach the work.
Pin at-risk/dangling commits somewhere garbage collection can't reach them before deleting a
branch, running
gc, or force-pushing. Cleanup is reversible only while a ref (or the reflog window) still points at the work. Critical asymmetry:bundle,archive, andformat-patchcan only reach objects git already knows about. An untracked file that was nevergit added and neverstash -ued is invisible to all three — the copy on disk is the only copy, so preserving it means literally copying the file out. Backing up "the repository" and believing untracked work came along is how a clean-looking backup silently omits the only thing at risk. - Verify "merged" by CONTENT, never by commit count — and know that most content checks are
also unsound. After a squash-merge,
main..branchshows the branch's original commits as "unmerged" even though their content is on main — often 100+ phantom commits. But swapping counts for the nearest content check is not enough: in one audit, three successive "surely this is content-level now" instruments each returned a wrong answer —git cherry(squash rewrites patch-ids → false UNMERGED), a three-dotdiff base...refused to ask "what does base lack" (three-dot answers a different question and under-reported missing files by 5×), and a file-level existence check (a file present on base can still be missing the ref's lines). Only the trial merge (git merge-tree, whatgit_verify_branch_merged.shruns) was right every time. Diff-form and rung-by-rung reliability: references/merge_verification.md. - For a high-stakes "is everything merged?" call, verify adversarially — ideally with a fan-out of independent agents each trying to disprove it. One reviewer (human or model) scanning many branches reliably misses a real gap; independent cross-checks catch it. Give at least one agent the explicit job of widening the scope (rule 1) rather than re-checking the branches already on the table — scope gaps hide from reviewers who accept the given frame.
Mode A — Recover lost work
A commit/branch/stash that "disappeared" is almost always still in the object store for ~90 days. Full ladder (reflog → fsck → dangling) with exact commands and the canonical Git facts: references/recovery_playbook.md. The 30-second version:
git reflog --date=iso | head -40 # find the lost HEAD position (most recoveries are here)
git show <sha> # CONFIRM it's the right commit before acting
git switch -c rescue/<name> <sha> # recover onto a NEW branch — never reset onto live work
If reflog doesn't show it (e.g. a dropped stash, an orphan from a rebase), fall through to
git fsck --dangling — see the playbook.
Mode B — Audit what's at risk, then preserve it
Step 0 — establish the scope (rule 1). Find every checkout of this repository on the machine, including the independent clones no in-repo command can see:
scripts/git_find_all_checkouts.sh # defaults to this repo's parent + grandparent
DEPTH=6 scripts/git_find_all_checkouts.sh ~ # widen when clones live far from each other
It matches sibling checkouts by normalized remote URL (so the SSH and HTTPS forms of one
repository compare equal), falling back to any shared commit history whenever either the current
or a candidate checkout has no origin. That history check works for shallow clones that cannot
see the repository's true root. It never matches by directory name, because an independent clone
is usually named differently from the original (repo vs repo-hotfix), which is exactly when
name matching fails. It canonicalizes path aliases before identifying the current checkout,
disables repository-provided fsmonitor commands while inspecting candidates, and treats commits
reachable from any locally known remote-tracking ref as pushed even when a branch has no upstream.
Exit is 1 when any other checkout holds uncommitted, untracked, unpushed, or uninspectable work.
Run Steps 1–2 in each checkout it reports, then treat "nothing at risk" as a claim about all of
them, not just this one.
Maintainer verification
Run the isolated regression suite after changing checkout discovery:
uv run python -m unittest discover -s tests -p 'test_*.py'
Step 1 — audit (non-destructive). What, if anything, is at risk of loss right now:
scripts/git_loss_audit.sh # defaults to remote "origin"; pass a remote name to override
Expected output: every worktree with branch/detached state and cleanliness, plus counts of local-only commits, dirty/unavailable worktrees, stashes, and dangling commits. Exit is 1 when commits exist on no remote or a worktree is dirty/uninspectable; stashes and danglers remain visible but do not alone make the audit fail. Exit 0 is therefore not permission to delete a visible stash/dangler: triage or preserve every reported item. Do not claim cleanup is safe until the named worktree is clean and its HEAD is proven contained or deliberately preserved.
Step 2 — preserve (additive, gc-proof). If anything showed up, make it un-loseable before touching branches or running gc:
scripts/git_preserve_danglers.sh --patch-dir ~/git-danglers # pin + export patches
This pins every dangling commit under refs/dangling-backup/<sha> (garbage collection can never
reach a referenced commit) without cluttering git branch, and optionally writes a .patch per
non-stash commit. For a specific important commit, also give it the full treatment — local
branch and a pushed remote branch and a git format-patch file — so a single disk or a
single git gc can't take it. Details + why triple-backup: references/recovery_playbook.md.
Untracked files need a different tool — plain copying (rule 4). Everything above moves git objects; a file git was never told about is not one. Preserve those explicitly, and keep the three channels separate so a later reader knows what each restores:
git -C <checkout> status --porcelain | grep '^??' # what is untracked
cp <each-untracked-path> <backup>/ # the ONLY copy — plain cp
git -C <checkout> diff > <backup>/uncommitted.diff # tracked-but-uncommitted
git -C <checkout> bundle create <backup>/history.bundle origin/main..HEAD # unpushed commits
git bundle verify <backup>/history.bundle # prove it restores
Write a one-paragraph README beside them saying where they came from, which branch, and when the
session stopped. A backup nobody can interpret six weeks later is only slightly better than none —
and the person reading it will not be the person who made it.
Mode C — Verify everything is merged (without being fooled by counts)
The trap: a stale branch shows "173 commits ahead of main" yet every line is already on main (squash-merge artifact). Never conclude "unmerged" from counts. Per-branch content check:
scripts/git_verify_branch_merged.sh <branch> [<base>] # base defaults to origin/main
This mode is the one direction where a stale base is unsafe (rule 1): judged against yesterday's
origin/main, a branch whose content landed hours ago still reads UNMERGED, and "rescuing" it
re-applies an older version over whatever was built on top. The script fetches first for exactly
that reason — but if the fetch fails it falls back to cached refs and says so on stderr only.
Treat that line as a blocker, not a footnote: rerun once the network is back before acting on the
verdict. Comparing by hand (git diff origin/main <branch>, git log origin/main..<branch>) has
no such safety net at all — fetch yourself first, every time.
It reports MERGED (ancestor) or MERGED (content contained) — safe to delete — versus
UNMERGED / NEEDS REVIEW, listing the files the branch would still change. The verdict is sound,
not heuristic: it does a trial 3-way merge of the branch into the base with git merge-tree
(in memory, no checkout) and only says "safe to delete" when that merge changes nothing — so a
squash-merged branch reads MERGED despite a nonzero commit count, while a revert/edit/new-file the
base lacks reads UNMERGED. It is safety-biased: anything it can't prove contained is reported
for review, because a false "merged" loses work while a false "unmerged" only costs a look. Full
technique (and why --find-object/blob heuristics are unsound for auto-decisions), plus the
adversarial multi-agent verification pattern for a whole repo of branches (read-only agents,
one per batch, each told to falsify "everything is merged," every finding independently
re-checked): references/merge_verification.md.
Mode D — Prevent the disaster
The habits that keep a branch tangle from ever stranding work: references/prevention_practices.md. The load-bearing few:
- Commit before you switch — neither
git stashnorgit worktree. Uncommitted work is what gets stranded: agit stashyou later can't find, or edits aswitchburies. Commit each line of work to its own branch and push it early (a committed, pushed branch can't be orphaned), then bring it where you need it live by merging — not by stashing, and not by spinning up a secondgit worktreecheckout (which is one more place to forget work and won't even have your gitignored deps). A shared working tree with commit-then-switch discipline is the safe default. - If you truly need a second checkout, make it a worktree — never a second
git clone. Both are extra places to forget work, which is why commit-then-switch above is still the default. But the failure modes are not equal: a linked worktree announces itself ingit worktree list, so every audit finds it, while an independent clone is invisible to every command run from the original repository. Choosingclonefor a few days of parallel work quietly opts out of all the safety tooling. When a clone already exists (a colleague made it, a script made it, you inherited it), register it somewhere the team actually reads and retire it the day it's done — and until then, treat it as an audit target in its own right, not as a scratch directory. - Push a work-in-progress branch to a remote early. The one commit only on a local branch is the only commit that a dead laptop actually loses.
- Confirm the current branch before committing (
git branch --show-current) — a fix committed onto the wrong feature branch is invisible to its real PR and easy to lose on cleanup. - In a shared tree, never aim a destructive command at "the current branch" — name the branch
explicitly.
reset --hard,merge, andrebaseall act on whatever is checked out at the instant they run, so a branch check is stale the moment it returns: a parallel session canswitchin between, and your command lands on their branch. This is the inverse of the bullet below (that one protects your work from their switch; this one protects theirs from your command), and re-checking harder does not fix it — the race is inherent. Use the checkout-independent forms instead, which name their target and never touch the working tree:
Real incident: agit branch -f <branch> <target> # instead of: switch <branch> && reset --hard <target> git fetch origin <branch>:<branch> # fast-forward a branch you are not on git push origin <sha>:refs/heads/<branch>reset --hard origin/mainissued seconds aftergit branch --show-currentsaidmainlanded on a parallel session's feature branch and moved it back two commits; the follow-up "repair" then missed again because the tree had been switched a second time.git branch -ffixed both in one shot precisely because it never consults the checkout. - If a parallel session switched the shared tree onto its branch and stranded your uncommitted
work there, don't commit onto their branch — carry your edits to a branch off the base
(
git checkout origin/main -b …, aftergit diff --quietproves your files match across bases), commit only your explicit paths, then switch the tree back to their branch to restore their state. - If a parallel session is actively writing the shared tree — files keep appearing while you
work — don't
switch,add, orresetat all: each would either strand their uncommitted work or trip a worktree guard. When your own change is self-contained (new files, or edits that belong onorigin/mainrather than on their in-progress tree), build the commit with plumbing that never touches the working tree, then push it to a branch and open a PR:
The sequence reads and writes only the object store and a throwaway index, soexport GIT_INDEX_FILE=$(mktemp) # a scratch index — the tree's real index is untouched git read-tree origin/main # start from the pushed base, not the dirty tree git update-index --add --cacheinfo 100644,"$(git hash-object -w path/to/file)",path/to/file tree=$(git write-tree) commit=$(git commit-tree "$tree" -p origin/main -m "…") # HEAD does not move unset GIT_INDEX_FILE git push origin "$commit":refs/heads/<branch> # open the PR from heregit statusin the shared tree is byte-for-byte unchanged and the other session never sees a ripple. This is the escape hatch for when commit-then-switch is off the table because someone else holds the tree. - Before any rebase or branch-delete, run the Mode B audit. Ten seconds; it's the difference between "nothing to lose" and finding out after gc.
- Before bumping a shared version/lockfile, check the base's current value so two parallel branches don't both claim the same bump (a silent collision that blocks the later change from shipping).
Mode E — Retire worktrees, stashes, and branches safely
The opposite worry from Mode A: not "I lost something" but "these leftovers are piling up —
which can I destroy?" Deleting is trivial; proving each item is superseded is the work.
Start with git_find_all_checkouts.sh — git worktree list --porcelain alone will not show an
independent clone, and those are the leftovers most likely to be forgotten — then git_loss_audit.sh
inside each checkout it reports. Treat every checkout as an independent place where uncommitted or
detached work can hide. Then triage, backup, and retire:
Step 1 — classify each leftover: live WIP, or superseded draft? Evidence ladder, strongest first:
git cherry <base> <branch>— judges by patch content, not message text. Every commit showing-is already on the base (survives rebases and reworded messages); any+needs the next rungs. Never grep commit messages to decide this — the same work often lands under a different message.- Same-file supersession check — for a stash or
+commit touching files that were later reworked on the base: extract its version of the file and compare with the base's current version (git show <ref>:<path> | wc -lvsgit show <base>:<path> | wc -l, then spot-diff). If the base's version is a superset (has everything the leftover has, plus later work), the leftover is a superseded draft. Real case: a stash labeled "unfinished dev" held a 1128-line renderer; main's version was 1151 lines — the same functions plus a later feature parameter. Restoring that stash would have been a regression, not a recovery. - Function/marker-level probe — grep the base for the leftover's distinctive additions
(
def new_helper, a constant, an error string). All present on the base → superseded. This catches "absorbed into a refactor" cases where file shapes changed too much for rung 2.
Anything you cannot prove superseded stays alive (same safety bias as Mode C: a false "superseded" loses work; a false "still live" costs a branch name). One warning that changes verdicts: the leftover's label is not evidence — a stash named "unfinished development" can be a fully-landed early draft; judge content against the current base, never the name. Worked examples of all three rungs (including the squash-artifact and absorbed-into-refactor cases): references/merge_verification.md § Supersession triage.
Step 2 — pin true orphans, then back up every addressable ref:
scripts/git_preserve_danglers.sh --patch-dir <backup-dir>/dangling-patches
scripts/git_export_before_drop.sh --all-stashes --all-refs --out <backup-dir>
The first command makes unreferenced commits reachable; --all-refs then captures branch, stash,
hidden-backup, and linked-worktree HEAD refs in one verified bundle. For a small targeted cleanup,
use repeated --branch instead. The exporter never drops or deletes anything.
Step 3 — destroy, in the safe order:
Stashes: drop from the highest index down (
drop stash@{2}beforestash@{1}) — indices shift as you drop, and top-down keeps every number meaning what your backup filenames say.Linked worktrees: require a clean
git -C <path> status --short --branch, record its exact HEAD, prove that HEAD is contained/superseded, then usegit worktree remove <absolute-path>without--forceand re-rungit worktree list. Never remove the primary/current checkout. Follow references/merge_verification.md § Worktree retirement.Local branches: prefer
git branch -d(refuses unmerged); use-Donly for items Step 1 proved superseded, backed up, and the user authorized deleting. A squash-merge is the usual reason-drefuses a branch whose content is fully merged:-djudges by commit ancestry, and the squash replaced the branch's commits with one new-SHA commit, so ancestry is broken even though every line landed. That is not license to reach for-Dreflexively — it means fall back to Step 1's content check (git cherry, superset diff) and only-Donce that proves containment. Delete remote branches only after re-verifying the exact remote and repository visibility/ownership.Independent clones: there is no safe git-level command — only
rm -rf, which git cannot undo.git worktree removedoes not apply (it isn't a worktree) and refuses to help, so the usual "the tool will stop me if it's unsafe" backstop is absent here. Make the check explicit instead: gate the deletion on the backup actually existing, so a missing file aborts rather than being noticed afterwards.for f in <backup>/<untracked-file> <backup>/uncommitted.diff <backup>/history.bundle; do [ -s "$f" ] || { echo "MISSING: $f — refusing to delete"; exit 1; } done rm -rf <clone-path>Prefer deleting one clone at a time with its own verification over a loop across several — a glob that deletes five directories has five chances to be wrong and reports none of them.
Step 4 — after the delete, re-check by content, not by filename. When a cleanup (or a batch of
squash-merges) is already done and the question becomes "did any of it drop work?", the naming-based
check that felt sufficient — comm over git ls-tree filenames, "every file is still on main" — is
not enough: identical filenames say nothing about identical content. A file the deleted branch and
the survivor both have can still differ line-for-line. Re-verify at blob level, and read the diff in
the right direction:
git diff <survivor-ref> <deleted-or-merged-tip> # survivor first, the gone thing second
Lines marked - are on the survivor but not the tip → the survivor is a superset (safe: it has
everything the tip had, and more). Lines marked + are on the tip but not the survivor → candidate
loss — run each through Step 1's ladder: is that symbol on the survivor under a different shape (a
rename or refactor, not a deletion)? A diff that is mostly - with a few + is the fingerprint of
"the survivor moved on and the deleted branch was an older version" — a merge that succeeded, not
work lost. Apply the same test to any preserved backup: byte-identical or survivor-superset is safe;
a line the survivor genuinely lacks anywhere is the one to escalate.
Recovery, if you regret it: patches re-apply with git apply; the untracked tar extracts
in place; the bundle restores full history via git fetch <file>.bundle <branch>:restored/<branch>.
Scripts (execute these; they are non-destructive unless noted)
| Script | Does | Mutates? |
|---|---|---|
scripts/git_find_all_checkouts.sh [root ...] |
Find every checkout of this repo on the machine — including independent clones invisible to git worktree list — and flag those holding uncommitted/untracked/unpushed work, plus how stale each one's cached remote refs are (STALE_AFTER=<s>, default 3600) |
Nothing (read-only, no fetch) |
scripts/git_loss_audit.sh [remote] |
Refresh one remote, then report every worktree, local-only commit, stash, and dangler | Remote-tracking refs only |
scripts/git_preserve_danglers.sh [--patch-dir DIR] |
Pin danglers to refs/dangling-backup/, optional patches |
Adds refs only (never deletes/gc) |
scripts/git_verify_branch_merged.sh <branch> [base] |
Refresh remotes, then give a content-level MERGED/UNMERGED verdict | Remote-tracking refs only |
scripts/git_export_before_drop.sh [--all-stashes] [--stash N] [--branch B] [--all-refs] [--out DIR] |
Export stashes plus selected branches or every current ref into verified bundles | Writes backup files only (never drops/deletes) |
All five run from the repository root. They only ever find, fetch, log, diff, show,
status, cat-file, rev-list, rev-parse, fsck, for-each-ref, remote get-url,
stash show, archive, bundle create/verify, and (preserve only) update-ref — never
checkout, reset, push, stash drop, branch -d, or gc, so they are safe to run in a
dirty tree or alongside other agents. git_find_all_checkouts.sh additionally never fetches, so
it works offline and behind a proxy.
Troubleshooting
- An audit came back clean but the user still thinks something is missing — believe them and
suspect scope, not thoroughness. The in-repo instruments were probably all correct about the
one directory they could see. Run Step 0 (
git_find_all_checkouts.sh) before re-running anything you already ran; repeating a correctly-executed check in the wrong scope returns the same clean answer with more confidence behind it, which is worse than the first pass. git_find_all_checkouts.shfinds nothing, but you're fairly sure another copy exists — three likely causes, in order: (1) the copy lives outside the default roots (pass an explicit root such as~, and raiseDEPTH); (2) it sits under a pruned path — the sweep skipsnode_modules,.venv,vendor,.terraform; (3) itsoriginpoints somewhere else entirely (a fork, or a path remote), so remote matching rejects it — check withgit -C <suspect> remote -vand compare root commits by hand:git rev-list --max-parents=0 HEAD. A copy made bycp -rbefore the repo had any remote will only match on root commit.git_loss_audit.shreports dangling commits that look like old stashes — expected after stash-heavy work. They're reflog-reachable now; pin them withgit_preserve_danglers.shif you want them past the gc window, then inspect withgit show <sha>at leisure.- A branch shows huge "commits ahead" but you suspect it's merged — trust
git_verify_branch_merged.sh(content), not the count. See Mode C. git fetchin a script hangs behind a proxy / offline — loss detection still works on cached remote refs, because a stale cache can only over-report unpushed work. Merge and supersession verdicts (Mode C, Mode E) are the exception and genuinely need a fetch; without one, say so in the report rather than presenting the verdict as settled.- Your work looks unmerged, but the repository moved while you were working — check the clock
before you rescue anything:
git_find_all_checkouts.shprints when each checkout last fetched, andgit log --oneline <cached-base>..origin/mainafter a fresh fetch shows what arrived meanwhile. A long session is the risk window — the base you compared against at the start can be many hours old by the end. Symptom to recognise: a change you know you committed appears absent upstream, so you prepare to re-ship it. Fetch first, then compare by content; if it did land, check whether anyone improved it before re-applying your version over theirs. - You're on a detached HEAD after checking out a commit — that commit is safe as long as you
git switch -c <branch> HEAD(or the reflog remembers it for ~90 days). Don't leave important new work on a detached HEAD across agc. - Only one worktree remains after cleanup —
git worktree listalways includes the primary repository checkout. Do not delete it merely to make the count zero; the goal is one maintained checkout, not no checkout. refs/dangling-backup/*refs are cluttering things later — once you've confirmed (Mode C) their content is on a remote, delete them withgit for-each-ref --format='%(refname)' refs/dangling-backup/ | xargs -n1 git update-ref -d. Only after you've verified.
Next step
After recovery/audit, if the repo also needs routine setup, safe commit/push, conflict handling,
or handoff hygiene, that's the auto-repo-setup skill's job (invoke /auto-repo-setup) — this
skill is the forensic/recovery layer, that one is the routine-workflow layer.
- 流狐分类
- 工程开发
- 作者声明 Agent
- 未找到明确声明;不据此推断已兼容或已测试
- 静态检查
- 88 / 100 · 启发式扫描,不代表运行安全
- 作者 / 版本 / 许可
- @daymade · 未声明 license
- 流狐 Token 估算
- 较高消耗
- 流狐接入估算
- 需简单配置
- 是否需要外部 API Key
- 未发现要求
- 检测到的系统要求
- 未声明
- 底层运行要求
- Python
- 检测到的文件与系统行为
-
- 只读
- 允许写入 / 修改
- Shell 执行
- 检测到的网络行为
- 允许外网请求
- 安装命令数
- 无(仅作为资料)
档案由构建时根据 SKILL.md 与安装命令自动衍生,可能与作者实际意图存在差异。
需要注意: 未限定 allowed-tools,默认拥有全部工具权限。
作者没有在当前 SKILL.md 中定义固定输出样例。 The user says / needs… · Go to "I think I lost a commit / branch / stash", "recover the deleted X", "git reflog" · Mode A — Recover "did I lose anything?", "what worktrees/stashes/branches remain?", after a messy session · Mode B — Audit & preserve
Get the SCOPE right before you trust any verdict: every instrument here only sees the repository it runs in. git worktree list, git branch -a, git fsck, git stash list, git log --not --remotes — all of them are structurally blind to an independent clone of
A commit/branch/stash that "disappeared" is almost always still in the object store for ~90 days. Full ladder (reflog → fsck → dangling) with exact commands and the canonical Git facts: references/recoveryplaybook.md. The 30-second version:
Step 0 — establish the scope (rule 1). Find every checkout of this repository on the machine, including the independent clones no in-repo command can see: It matches sibling checkouts by normalized remote URL (so the SSH and HTTPS forms of one
Run the isolated regression suite after changing checkout discovery: Step 1 — audit (non-destructive). What, if anything, is at risk of loss right now: Expected output: every worktree with branch/detached state and cleanliness, plus counts of
The trap: a stale branch shows "173 commits ahead of main" yet every line is already on main (squash-merge artifact). Never conclude "unmerged" from counts. Per-branch content check: This mode is the one direction where a stale base is unsafe (rule 1): judged…
# Git Safety Net
Prevent losing work in a tangle of branches/stashes/rebases, and recover it forensically
when something already went sideways. The commands here are all **non-destructive or additive**
until a step is explicitly labeled destructive — recovery must never make the loss worse.
## Entry router — pick the mode from what the user is worried about
| The user says / needs… | Go to |
|---|---|
| "I think I lost a commit / branch / stash", "recover the deleted X", "git reflog" | **Mode A — Recover** |
| "did I lose anything?", "what worktrees/stashes/branches remain?", after a messy session | **Mode B — Audit & preserve** |
| "is everything merged?", "what's still not on main?", before deleting old branches | **Mode C — Verify merged** |
| "so this never happens again", starting parallel/multi-branch work | **Mode D — Prevent** |
| "clean up worktrees/stashes/branches", "converge everything onto main", "only keep one main branch" | **Mode E — Retire safely** |
| "an audit already said it's clean, but is anything *else* lost?", "check again" | **Mode B, starting at Step 0** — a repeat request usually means the first pass had the wrong scope, not that it looked carelessly |
When in doubt, **run Mode B first**, beginning with `git_find_all_checkouts.sh` (Step 0) and then
`git_loss_audit.sh` in each checkout it finds. Both are cheap and non-destructive, and they answer
"is anything at risk" for the whole machine rather than for whichever directory you started in.
## The six load-bearing rules (internalize these; the modes apply them)
1. **Get the SCOPE right before you trust any verdict: every instrument here only sees the
repository it runs in.** `git worktree list`, `git branch -a`, `git fsck`, `git stash list`,
… 作者原文负责流程事实;流狐只索引当前章节、要点、文件与命令。
章节 -> Entry router — pick the mode from what the user is worried about → The six load-bearing rules (internalize these; the modes apply them) → Mode A — Recover lost work → Mode B — Audit what's at risk, then preserve it → Maintainer verification → Mode C — Verify everything is merged (without being fooled by counts)
要点 -> non-destructive or additive · Mode A — Recover · Mode B — Audit & preserve · Mode C — Verify merged · Mode D — Prevent · Mode E — Retire safely · Mode B, starting at Step 0 · run Mode B first
文件/命令 -> gitfindallcheckouts.sh · gitlossaudit.sh · git worktree list · git branch -a · git fsck · git stash list · git log --not --remotes · git worktree add
内容 SHA-256 -> ab30c213e320
方法与流程
适用与边界
原文中的明确线索
gitfindallcheckouts.sh、gitlossaudit.sh、git worktree list、git branch -a、git fsck、git stash list、git log --not --remotes、git worktree add