You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
521 B
49 lines
521 B
19 years ago
|
#!/bin/sh
|
||
|
|
||
|
echo "/* Automatically generated by $0 */
|
||
|
struct cmdname_help
|
||
|
{
|
||
|
char name[16];
|
||
|
char help[64];
|
||
|
};
|
||
|
|
||
|
struct cmdname_help common_cmds[] = {"
|
||
|
|
||
|
sort <<\EOF |
|
||
|
add
|
||
|
apply
|
||
|
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
|
||
|
verify-tag
|
||
|
whatchanged
|
||
|
EOF
|
||
|
while read cmd
|
||
|
do
|
||
|
sed -n "/NAME/,/git-$cmd/H;
|
||
|
\$ {x; s/.*git-$cmd - \\(.*\\)/ {\"$cmd\", \"\1\"},/; p}" \
|
||
|
"Documentation/git-$cmd.txt"
|
||
|
done
|
||
|
echo "};"
|