Created
August 16, 2013 08:26
-
-
Save netwjx/6248237 to your computer and use it in GitHub Desktop.
查找当前目录下所有git项目,并输出各自的最后修改时间
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
repos for i in (find . -type d -a -name .git -exec dirname '{}' \; | sed "s|./||"); echo $i; pushd $i; git log -1 --pretty=format:' %ci %s%n%n'; popd; end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment