Created
November 12, 2010 22:17
-
-
Save mkdynamic/674798 to your computer and use it in GitHub Desktop.
List branches with date of last commit (via git irc, @SethRobertson)
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
git for-each-ref --format="%(refname)" refs/heads | while read f; do echo -n $f " "; git log -n 1 --pretty=tformat:%cd; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment