Created
October 16, 2012 10:57
-
-
Save gerjantd/3898661 to your computer and use it in GitHub Desktop.
Shell/git: show most recent log entry for all repos in current dir
This file contains hidden or 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
dorsthog@svl01-int-p:/data/git> for f in `find -mindepth 1 -maxdepth 1 -type d -name "*.git"`; do echo $f; pushd .; cd $f; git log|head -5; popd; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment