Created
May 27, 2015 16:04
-
-
Save enyo/d27f697bd716b7397056 to your computer and use it in GitHub Desktop.
Provides a list of commits in all given folders
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 [email protected] | |
cd .. | |
done | |
echo |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Don't forget to adapt the
--author
.