Skip to content

Instantly share code, notes, and snippets.

@epmartini
Created April 27, 2012 13:35
Show Gist options
  • Save epmartini/2509266 to your computer and use it in GitHub Desktop.
Save epmartini/2509266 to your computer and use it in GitHub Desktop.
Git Remotes of Branches order by date
for k in `git branch -a | grep remotes | sed s/^..//`;do echo -e `git log -1 --pretty=format:"%ci %cr" "$k"`\\t"$k";done|sort
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment