Skip to content

Instantly share code, notes, and snippets.

@tkfm-yamaguchi
Created January 27, 2014 20:08
Show Gist options
  • Save tkfm-yamaguchi/8656260 to your computer and use it in GitHub Desktop.
Save tkfm-yamaguchi/8656260 to your computer and use it in GitHub Desktop.
Git hash for rake
module Git
def self.current_hash
`git rev-parse --short HEAD`.chomp
end
end
task :hash do
puts Git.current_hash
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment