Created
June 19, 2014 21:11
-
-
Save brock/ce69c71104e17736e7e8 to your computer and use it in GitHub Desktop.
gbs - git branch sorted (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
gbs () { | |
for k in `git branch | 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 | awk '{ print $4, $5, $6, $7}' | head -n 10 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment