Skip to content

Instantly share code, notes, and snippets.

@russianryebread
Created February 22, 2023 20:23
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 russianryebread/ceadb899ccda103d92e41ec1f3adb53d to your computer and use it in GitHub Desktop.
Save russianryebread/ceadb899ccda103d92e41ec1f3adb53d to your computer and use it in GitHub Desktop.
Export Simple Git History as CSV / Excel

Export

git log --pretty='format:"%h","%aI","%an <%ae>","%s"' > ./gitlog.csv

Produces:

"20ca61c","2023-02-22T09:33:46-05:00","John Smith <john@smith.com>","Updated Marketing Website...again"
"b3235a5","2023-02-22T09:31:21-05:00","John Smith <john@smith.com>","Updated Marketing Website"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment