Skip to content

Instantly share code, notes, and snippets.

@cedricvidal
Created January 11, 2019 17:05
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 cedricvidal/6d192f92d4ba668b3f898805e4c30a6d to your computer and use it in GitHub Desktop.
Save cedricvidal/6d192f92d4ba668b3f898805e4c30a6d to your computer and use it in GitHub Desktop.
Git log CSV
(SEP=",";\
echo "Hash${SEP}AuthorName${SEP}AuthorEmail${SEP}CommiterName${SEP}CommiterEmail${SEP}AuthorDate${SEP}Subject"; \
git log --pretty=format:"%h${SEP}%an${SEP}%ae${SEP}%cn${SEP}%ce${SEP}%ad${SEP}%s" --all --date=short\
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment