Skip to content

Instantly share code, notes, and snippets.

@enyo
Created May 27, 2015 16:04
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 enyo/d27f697bd716b7397056 to your computer and use it in GitHub Desktop.
Save enyo/d27f697bd716b7397056 to your computer and use it in GitHub Desktop.
Provides a list of commits in all given folders
#!/bin/bash [0/0]
repos=(api webserver dashboard paywall utils services)
echo
for repo in ${repos[*]}
do
cd $repo
git log --since=am --pretty="format:%Cgreen$repo%Creset/%s (%Cred%h%Creset)%+b" --no-merges --author=m@tias.me
cd ..
done
echo
@enyo
Copy link
Author

enyo commented May 27, 2015

Don't forget to adapt the --author.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment