Hi, I have two remote branches prod and beta, I want to create one worktree for prod and one for beta. mkdir app && cd app git clone --bare repo .git git worktree add --checkout beta beta git worktree add --checkout prod prod cd prod git pull Mege conflict As you can see, I get a merge conflict right after I clone the repo, create the worktree and do a git pull, maybe the worktree is trying to do a pull from master, I have no idea How to fix that? Best Regards.