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
+5
new file mode 100755
index 0000000000..f6553a4e4e
--- /dev/null
+++ b/V
@@ -0,0 +1,5 @@
+#!/bin/sh
+for v in maint master next pu
+do
+ echo $v $(git-describe $v) $($HOME/git-$v/bin/git version)
+done