Skip to content

Instantly share code, notes, and snippets.

@brock
Created June 19, 2014 21:11
Show Gist options
  • Save brock/ce69c71104e17736e7e8 to your computer and use it in GitHub Desktop.
Save brock/ce69c71104e17736e7e8 to your computer and use it in GitHub Desktop.
gbs - git branch sorted (by date)
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