-
Notifications
You must be signed in to change notification settings - Fork 1
fix: base new worktrees on fetched origin/<default>, not stale local main #5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
b1b1293
fix: base new worktrees on fetched origin/<default>, not stale local …
joch c3ac260
fix: measure merge detection against resolved default tip
joch df0de3d
fix: return fully-qualified base ref to avoid ambiguity
joch 61a7d2c
fix: never schedule the default-branch worktree for cleanup
joch File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,31 @@ | ||
| package cli | ||
|
|
||
| import ( | ||
| "testing" | ||
|
|
||
| "github.com/joch/ygg/internal/worktree" | ||
| ) | ||
|
|
||
| func TestSelectMergedWorktreesExcludesDefaultBranch(t *testing.T) { | ||
| worktrees := []*worktree.Worktree{ | ||
| {Name: "main", Branch: "main", IsPrimary: true}, | ||
| {Name: "mainwt", Branch: "main", IsPrimary: false}, // non-primary, on default branch | ||
| {Name: "feature", Branch: "feature", IsPrimary: false}, | ||
| {Name: "wip", Branch: "wip", IsPrimary: false}, | ||
| } | ||
| // MergedBranches now measures against a fully-qualified ref, so the default | ||
| // branch itself appears in the merged list (it no longer self-filters). | ||
| merged := []string{"main", "feature"} | ||
|
|
||
| got := selectMergedWorktrees(worktrees, merged, "main") | ||
|
|
||
| // Only "feature" qualifies: primary is skipped, the non-primary default-branch | ||
| // worktree must be skipped, and "wip" is not merged. | ||
| var names []string | ||
| for _, wt := range got { | ||
| names = append(names, wt.Name) | ||
| } | ||
| if len(names) != 1 || names[0] != "feature" { | ||
| t.Fatalf("selected %v, want exactly [feature]", names) | ||
| } | ||
| } |
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
When
BaseRefreturns a fully-qualified ref here,MergedBranchesno longer filters out the default branch itself: for example, runningygg cleanfrom a non-primary worktree checked out onmainmakesgit branch --merged refs/heads/mainprint* main, whichMergedBranchesnormalizes tomainand compares againstrefs/heads/main. That puts the default branch inmergedSet, so the current default-branch worktree is scheduled for removal; the previousMergedBranches(defaultBranch)call filteredmainout.Useful? React with 👍 / 👎.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed in 61a7d2c. You're right — once merge detection uses a fully-qualified ref,
MergedBranchesno longer self-filters the default branch. Extracted the candidate selection intoselectMergedWorktreesand now skip both the primary worktree and any worktree on the default branch, independent of the merged set. AddedTestSelectMergedWorktreesExcludesDefaultBranch(which fails on the old logic, selecting themainworktree, and passes now).IsBranchMergedwas unaffected (it returns early forbranch == defaultBranch).