Last active
August 29, 2015 14:24
-
-
Save carltondickson/b5421a81b0dc0b253c5d to your computer and use it in GitHub Desktop.
Sort git branches by date
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
# Remote branches | |
for k in `git branch -r|awk '{print $1}'`;do echo `git show --pretty=format:"%Cgreen%ci %Cblue%cr %Cred%cn %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