All Questions
1 question
0
votes
1
answer
242
views
How to execute --track, using GitPython(as a python script). "git checkout -B <branchname> --track origin/<TeamBranch>"
I can execute "git checkout -B --track origin/TeamBranch" through terminal. but I have the requirement to implement the above command through my script using Gitpython.
can someone help me ...