Git worktree
A bare git repository is needed to build a worktree:
git clone --bare <repositoryAddress>
To create a worktree that is based on an existitng branch run:
cd repositoryAddress.git
git worktree add --checkout <remoteBranch>
Press ← or → to navigate between chapters
Press S or / to search in the book
Press ? to show this help
Press Esc to hide this help
A bare git repository is needed to build a worktree:
git clone --bare <repositoryAddress>
To create a worktree that is based on an existitng branch run:
cd repositoryAddress.git
git worktree add --checkout <remoteBranch>