Created
March 2, 2016 13:12
-
-
Save lherich/7ae4a95d1e87916101f0 to your computer and use it in GitHub Desktop.
Extend git branch by showing the last change date
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
# source: http://stackoverflow.com/a/2514279 | |
for k in `git branch -r | perl -pe 's/^..(.*?)( ->.*)?$/\1/'`; do echo -e `git show --pretty=format:"%Cgreen%ci %Cblue%cr%Creset" $k -- | head -n 1`\\t$k; done | sort -r |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment