diff options
author | dmitry kim <jason@nichego.net> | 2008-04-10 22:26:24 +0400 |
---|---|---|
committer | dmitry kim <jason@nichego.net> | 2008-04-10 22:26:24 +0400 |
commit | b75db5a36c04b0def01673b1ffabce40438a2b9f (patch) | |
tree | 9c6c96e5e0a87cbcdd65bad28fcbc24763cc3cf1 /bin | |
parent | 27ef2c2c2ba14f02c63ee0d74aba4ff2a470dfa6 (diff) |
+ show relative timestamp in git version
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/rbot | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -75,9 +75,9 @@ if $version =~ /git/ branch = $1.dup || "unknown" changed = git_out.match(/^# Change(.*)\n/) rev = "revision " - git_out = `git log -1 --pretty=format:"%h%n%b"`.split("\n") - rev << git_out.first - if git_out.last.match(/^git-svn-id: \S+@(\d+)/) + git_out = `git log -1 --pretty=format:"%h%n%b%n%cr"`.split("\n") + rev << git_out.first << ' [' << git_out.last << ']' + if git_out[1].match(/^git-svn-id: \S+@(\d+)/) rev << "(svn #{$1})" end rev << ", local changes" if changed |