Last active
February 3, 2025 10:31
-
-
Save jessevdp/8ed52506bc93cd04f2b93db75e50b5cc to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mkdir project-folder | |
cd project-folder | |
git clone --bare repo.git .bare | |
echo "gitdir: ./.bare" > .git | |
git config remote.origin.fetch "+refs/heads/*:refs/remotes/origin/*" | |
git worktree add main main | |
git worktree add ticket-num "feature/ticket-num" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://morgan.cugerone.com/blog/workarounds-to-git-worktree-using-bare-repository-and-cannot-fetch-remote-branches/