Skip to content

Instantly share code, notes, and snippets.

@jfo
Created August 19, 2018 19:25
Show Gist options
  • Save jfo/f1e75a2137f03bb671dc701932b1cba7 to your computer and use it in GitHub Desktop.
Save jfo/f1e75a2137f03bb671dc701932b1cba7 to your computer and use it in GitHub Desktop.
#!/usr/bin/env bash
for dir in */; do
if [ -d $dir/.git ]; then
(
cd $dir;
git log --author=fowler --pretty=format:%ad --date=short;
);
echo;
fi
done | grep -vE '^$'| uniq -c | sort -k 2,2 # | sed s/([0-9].)/fj\ /
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment