All Questions
3 questions
0
votes
1
answer
2k
views
git log does not return the history of a file correctly
I have a weird problem with the git log command. Although this command:
git log --pretty=format: --name-only --diff-filter=A
returns .xyz.yml file in the list, but when I try to run this command:
git ...
3
votes
1
answer
16k
views
Parse git log using gitpython
In python, I want to get log of all commits for a file in a git repository and parse the information in the log (hash, author name, author mail, author date, committer name, committer mail, commit ...
1
vote
2
answers
3k
views
Diff commit messages of two branches with gitpython
At work, we have a workflow where each branch is "named" by date. During the week, at least once, the latest branch gets pushed to production. What we require now is the summary/commit messages of the ...