mirror of
https://github.com/git/git.git
synced 2024-11-01 14:57:52 +01:00
0bc72abdb0
This way "git tag -v $tag" is the UI for git-verify-tag. Signed-off-by: Santi Béjar <sbejar@gmail.com> Signed-off-by: Junio C Hamano <junkio@cox.net>
51 lines
547 B
Bash
Executable file
51 lines
547 B
Bash
Executable file
#!/bin/sh
|
|
|
|
echo "/* Automatically generated by $0 */
|
|
struct cmdname_help
|
|
{
|
|
char name[16];
|
|
char help[80];
|
|
};
|
|
|
|
struct cmdname_help common_cmds[] = {"
|
|
|
|
sort <<\EOF |
|
|
add
|
|
apply
|
|
archive
|
|
bisect
|
|
branch
|
|
checkout
|
|
cherry-pick
|
|
clone
|
|
commit
|
|
diff
|
|
fetch
|
|
grep
|
|
init-db
|
|
log
|
|
merge
|
|
mv
|
|
prune
|
|
pull
|
|
push
|
|
rebase
|
|
reset
|
|
revert
|
|
rm
|
|
show
|
|
show-branch
|
|
status
|
|
tag
|
|
EOF
|
|
while read cmd
|
|
do
|
|
sed -n '
|
|
/NAME/,/git-'"$cmd"'/H
|
|
${
|
|
x
|
|
s/.*git-'"$cmd"' - \(.*\)/ {"'"$cmd"'", "\1"},/
|
|
p
|
|
}' "Documentation/git-$cmd.txt"
|
|
done
|
|
echo "};"
|