Skip to content

Instantly share code, notes, and snippets.

@chadly
Created August 28, 2019 22:30
Show Gist options
  • Save chadly/7eb48d4e2954e098adf8d83d88df1ce8 to your computer and use it in GitHub Desktop.
Save chadly/7eb48d4e2954e098adf8d83d88df1ce8 to your computer and use it in GitHub Desktop.
Export commit history for specific date range for all repositories in a directory
for d in */ ; do
cd $d
git log --since 2015-03-01 --until 2016-06-30 --reverse --pretty=format:https://github.com/civicsource/${d}commit/%H,%an,%ad,\"%s\" --date=iso > ../${d::-1}.csv
cd ..
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment