Created
July 23, 2018 06:12
-
-
Save mykhailo-petrenko/454667d8a34e47ba93aad470d08bbbf3 to your computer and use it in GitHub Desktop.
Got Log to CSV
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
echo "Hash;Author;Date;Commit" > 'report.csv' | |
git log --pretty=format:'%h;%an;%ad;%s' --author='Author 1' >> 'report.csv' | |
git log --pretty=format:'%h;%an;%ad;%s' --author='Author 2' >> 'report.csv' | |
# |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment