mirror of
https://github.com/git/git.git
synced 2026-01-12 13:53:11 +09:00
6 lines
110 B
Bash
Executable File
6 lines
110 B
Bash
Executable File
#!/bin/sh
|
|
for v in maint master next pu
|
|
do
|
|
echo "$v $(git-describe $v) $($HOME/git-$v/bin/git version)"
|
|
done
|