All Questions
1 question
0
votes
0
answers
140
views
On Windows 10 (using cygwin running python GitPython), how to do a git pull?
With this Python code (using GitPython) (passing 'sqa' as branch):
def git_pull(self, branch_name):
self.repo.git.checkout(branch_name)
branch = self.repo.active_branch
...