Skip to content

Instantly share code, notes, and snippets.

@cbartlett
Created November 3, 2012 18:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cbartlett/4008195 to your computer and use it in GitHub Desktop.
Save cbartlett/4008195 to your computer and use it in GitHub Desktop.
List remote branches by last updated date
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`$k;done|sort -r
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment