git.lirion.de

Of git, get, and gud

summaryrefslogtreecommitdiffstats
path: root/scripts/config_version.rb
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/config_version.rb')
-rw-r--r--scripts/config_version.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/scripts/config_version.rb b/scripts/config_version.rb
new file mode 100644
index 0000000..52f32c5
--- /dev/null
+++ b/scripts/config_version.rb
@@ -0,0 +1,17 @@
+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