git worktree

Updated: 09 November 2025

Concurrently checkout multiple branches of the same repository.


Delete a worktree

git worktree remove worktree_name

List all worktrees

git worktree list

Create a worktree at path and checkout commit-ish into it

git worktree add <path> <commit-ish>

Leave a comment