2
votes
1answer
357 views

GitPython create local branch from remote branch

I have multiple lab machines and I need to make a copy of my remote branch on my local lab machine. I believe the git bash command for this is: git checkout -b mybranch origin/mybranch How do I ...