Skip to content

Instantly share code, notes, and snippets.

@junosuarez
Created February 12, 2015 01:23
Show Gist options
  • Save junosuarez/75f7f1f2d53e669dec17 to your computer and use it in GitHub Desktop.
Save junosuarez/75f7f1f2d53e669dec17 to your computer and use it in GitHub Desktop.
#! /bin/sh
for f in *
do
# ignore logs/
[ $f = "logs" ] && continue
# ignore non-directories
[ ! -d $f ] && continue
echo $(basename $PWD)/$f
cd ./$f
git fetch --verbose
git log HEAD..origin/$(git rev-parse --abbrev-ref HEAD) --pretty="format:%ar %Cred%an:%Creset %s"
echo
cd ..
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment