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 do the equivalent in GitPython?
I may make changes and push the changes back to origin/mybranch and then pull the changes back on to other lab machines.