Skip to content

Instantly share code, notes, and snippets.

@jstorimer
Created April 29, 2011 03:45
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 jstorimer/947794 to your computer and use it in GitHub Desktop.
Save jstorimer/947794 to your computer and use it in GitHub Desktop.
#!/usr/bin/env ruby
# Put me in ~/bin/branch_date
ref = ARGV[0]
date = `git show --format='%at' #{ref} | head -1`.strip
puts "#{date}:#{ref}"
alias git-branches-by-date='git branch | xargs -n1 ~/bin/branch-date | sort'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment