Five small fixes from #1757 and #1762: slash-safe detached write, git branch budget, honest forced removal, only deleted branches named, birth branch off the checkout - #1772
Merged
Conversation
…git branch budget read after the global options, an honest forced removal, only deleted branches named, the birth branch off the checkout's own directory From #1762 and #1757. No design change; every fix has a test that fails without it. Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_017hpLBHRrvmubeoLrEyqtWD
This was referenced Sep 9, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Five small code fixes, from #1757 and #1762. No design change, no DECISIONS.md touched. Each fix has a test that fails without it.
🤖 curated · Fable 5.1
git -C <repo> branch --list) turned a read into a write budget. It reads them after the global options now.ok: truewith the checkout still on disk. The failure is thrown when the directory is still there.branchesDeletednamed a branch whose deletion git refused, for example one another worktree has checked out. Only a branch that went is named.remove <name>through a rename link took the birth branch from the argument, so the real birth branch stayed behind. It is read off the checkout's own directory.Two #1757 items are not bugs and stay as they are: the merged-branch rule counts any remote by decision (skill-branches DECISIONS.md, "on any remote"), and
priorityas a string is written into the tickets DECISIONS.md, so it is a design question, not a fix. The dot-prefix item was fixed by #1761.No SPEC files are touched: main has none since the clean slate.