Meta/V checks the versions of four primary integration branches.
Junio C Hamano committed
Mar 4, 2007 at 22:31 UTC
2b7f6ea943746a8d31f67808f5d075e957c280da
1 file changed
+5
V
new
+5
@@ -0,0 +1,5 @@
1
+#!/bin/sh
2
+for v in maint master next pu
3
+do
4
+ echo $v $(git-describe $v) $($HOME/git-$v/bin/git version)
5
+done