자세한 설명은 Git Worktree 도큐멘트를 보는 것이 좋다. git worktree란 제목에서도 알 수 있듯이 같은 리포지토리를 여러 개 clone하지 않고도 여러 브랜치에서 병행 작업할 수 있게 하는 기능이다. 주 커맨드는 아래와 같다. $ git worktree add [-f] [--detach] [--checkout] [--lock] [-b ] [] $ git worktree list [--porcelain] $ git worktree lock [--reason ] $ git worktree move $ git worktree prune [-n] [-v] [--expire ] $ git worktree remove [-f] $ git worktree repair [...] $ git workt..