Skip to content

Instantly share code, notes, and snippets.

@pirapira
Created February 21, 2010 14:03
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 pirapira/310327 to your computer and use it in GitHub Desktop.
Save pirapira/310327 to your computer and use it in GitHub Desktop.
require 'rubygems'
require 'grit'
include Grit
repo = Repo.new(".")
def date(head)
head.commit.committed_date
end
repo.heads.sort! {|a,b| (date b) <=> (date a)}.each{|h| print h.name + "\n"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment