Skip to main content

All Questions

Tagged with
2 votes
0 answers
67 views

How to get files change of a given branch?

I struggle to find how to get the list of files that have been modified on my current branch (and ONLY on my current branch, not on the other branches). For example, I have a branch my_branch based on ...
lucas_v67's user avatar
0 votes
0 answers
439 views

Error for git branch command using GitPython?

So I am using GitPython in a script to get the start branch of a commit. It works for some, but for others I eventually get errors like these: [10] => Failed to process commit: Cmd('git') failed ...
Alexander's user avatar
2 votes
1 answer
3k 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 ...
Jon Boehm's user avatar