https://github.com/git/git
Revision 5faaf24634a4d3a630bd3655cc85fa96f8bc1903 authored by Junio C Hamano on 14 February 2007, 21:20:41 UTC, committed by Junio C Hamano on 14 February 2007, 21:20:41 UTC
The next patch depends on this.

Signed-off-by: Junio C Hamano <junkio@cox.net>
1 parent bd07326
Raw File
Tip revision: 5faaf24634a4d3a630bd3655cc85fa96f8bc1903 authored by Junio C Hamano on 14 February 2007, 21:20:41 UTC
Make sure packedgitwindowsize is multiple of (pagesize * 2)
Tip revision: 5faaf24
generate-cmdlist.sh
#!/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
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 "};"
back to top