Skip to content

Instantly share code, notes, and snippets.

@mykhailo-petrenko
Created July 23, 2018 06:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mykhailo-petrenko/454667d8a34e47ba93aad470d08bbbf3 to your computer and use it in GitHub Desktop.
Save mykhailo-petrenko/454667d8a34e47ba93aad470d08bbbf3 to your computer and use it in GitHub Desktop.
Got Log to CSV
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