Skip to content

Instantly share code, notes, and snippets.

@twoism
Created October 25, 2012 00:52
Show Gist options
  • Save twoism/3949861 to your computer and use it in GitHub Desktop.
Save twoism/3949861 to your computer and use it in GitHub Desktop.
function branches_by_date() {
git for-each-ref --shell --sort=-committerdate --format='ref=%(refname); refdate=%(authordate)' refs/heads |
while read entry
do
eval $entry;
branch=$(echo "$ref" | cut -d/ -f3)
echo "$refdate $branch";
done |
less
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment