Wtm (Worktree Manager): A simpler way to work with Git Worktrees
1–6 of 6 posts
Re: Wtm (Worktree Manager): A simpler way to work with Git Worktrees
#2I'll have to install this and check it out
Re: Wtm (Worktree Manager): A simpler way to work with Git Worktrees
#3It's made a big difference in readability and cleanliness. I'll often use, eg, `mktemp -d` with a template argument that's relevant to the usage, then use the base name of the temporary directory as the worktree branch, followed by `git fetch :`.
I've been thinking about using worktrees more for my general development, since I'm frequently working across multiple branches.
Re: Wtm (Worktree Manager): A simpler way to work with Git Worktrees
#4Re: Wtm (Worktree Manager): A simpler way to work with Git Worktrees
#5Any recommended workflow for coordinating multiple agents? For instance, handling naming conventions, cleanup strategies, or preventing race conditions when multiple agents try to create worktrees at the same time?
This seems like it could be really powerful for that use case, especially with the hook system for per-worktree setup.
Re: Wtm (Worktree Manager): A simpler way to work with Git Worktrees
#6https://github.com/yankeexe/git-worktree-switcher
It does what it says on the tin.