Skip to content

Instantly share code, notes, and snippets.

@spencern
Created April 9, 2020 19:45
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 spencern/0f78a8f6295056338b040af4157ae313 to your computer and use it in GitHub Desktop.
Save spencern/0f78a8f6295056338b040af4157ae313 to your computer and use it in GitHub Desktop.
#!/bin/bash
cat ~/reaction/contributors-reaction.txt | {
while IFS= read -r line
do
git log --abbrev-commit --date=short --pretty=format:'%cd, "%h", "%an", "%ae", "%s"' --author="${line}" >> ~/reaction/contributors-reaction-commits-and-dates.csv
echo >> ~/reaction/contributors-reaction-commits-and-dates.csv
done
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment