mirror of
https://github.com/git/git
synced 2024-10-28 19:25:47 +00:00
5126f35a54
whatchanged is replaced by git log now. Signed-off-by: Martin Waitz Signed-off-by: Junio C Hamano <junkio@cox.net>
51 lines
550 B
Bash
Executable file
51 lines
550 B
Bash
Executable file
#!/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
|
|
EOF
|
|
while read cmd
|
|
do
|
|
sed -n '
|
|
/NAME/,/git-'"$cmd"'/H
|
|
${
|
|
x
|
|
s/.*git-'"$cmd"' - \(.*\)/ {"'"$cmd"'", "\1"},/
|
|
p
|
|
}' "Documentation/git-$cmd.txt"
|
|
done
|
|
echo "};"
|