Skip to content

Instantly share code, notes, and snippets.

@countless-integers
Last active January 14, 2016 08:57
Show Gist options
  • Save countless-integers/925df68f8acc2aa21b5c to your computer and use it in GitHub Desktop.
Save countless-integers/925df68f8acc2aa21b5c to your computer and use it in GitHub Desktop.
listing git branches with their age ordered from oldest
for k in `git branch -a | grep origin | grep -v HEAD | 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