Reputation: 163
I need to maintain a Excel for reporting of GitHub repository.
I need list of all file changes of every user on monthly bases.
Is there a provision to track changes of file filter by author of all branches based on time interval defined?
Upvotes: 2
Views: 1009
Reputation: 1424
For listing of file name need to include --name-only
git log --name-only --since=11.08.2014 --until=11.08.2015 --author="developerName"
Upvotes: 1
Reputation: 12976
You can use git log command with different options :
git log --since=11.08.2014 --until=11.08.2015 --author="developerName"
For different branches, you can execute the command on each branch, after checking out to it.
Upvotes: 1