Why does git worktree add create a branch, and can I delete it?
As the other guys answer this question, I put commands to delete the folder, delete worktree and delete branch here: first, list all of your worktrees to double check… $ git worktree list then, delete the folder of the worktree $ rm -rf path/to/worktree after that, delete the worktree itself $ git worktree prune in … Read more