Skip to content

Instantly share code, notes, and snippets.

@ryangreenberg
Created September 10, 2012 18:19
Show Gist options
  • Save ryangreenberg/3692694 to your computer and use it in GitHub Desktop.
Save ryangreenberg/3692694 to your computer and use it in GitHub Desktop.
Order git branch by last commit to branch
alias branches='for k in `git branch|sed s/^..//`;do echo -e `git log -1 --pretty=format:"%Cgreen%ci %Cblue%cr%Creset" "$k"`\\t"$k";done|sort'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment