With plain git, I can checkout a branch to another folder, outside of the repository:
git worktree add /path/to/somewhere branch
This gives me branch checked out to /path/to/somewhere. I would like to do the same thing with go-git. Correct me if I'm wrong, but I don't think it's possible yet?
With plain git, I can checkout a branch to another folder, outside of the repository:
This gives me
branchchecked out to/path/to/somewhere. I would like to do the same thing withgo-git. Correct me if I'm wrong, but I don't think it's possible yet?