control-repo/scripts/config_version.rb
2015-08-25 11:47:19 -07:00

18 lines
359 B
Ruby
Executable File

require 'rugged'
environmentpath = ARGV[0]
environment = ARGV[1]
repo = Rugged::Repository.discover(File.join(environmentpath, environment))
head = repo.head
#sha1 hash of the newest commit
head_sha = head.target_id
#the commit message associated the newest commit
commit = repo.lookup(head_sha)
#add something to find the remote url
puts head_sha