projects
/
git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Merge branch 'jc/pack'
[git]
/
generate-cmdlist.sh
1
#!/bin/sh
2
3
echo "/* Automatically generated by $0 */
4
struct cmdname_help
5
{
6
char name[16];
7
char help[64];
8
};
9
10
struct cmdname_help common_cmds[] = {"
11
12
sort <<\EOF |
13
add
14
apply
15
bisect
16
branch
17
checkout
18
cherry-pick
19
clone
20
commit
21
diff
22
fetch
23
grep
24
init-db
25
log
26
merge
27
mv
28
prune
29
pull
30
push
31
rebase
32
reset
33
revert
34
rm
35
show
36
show-branch
37
status
38
tag
39
verify-tag
40
whatchanged
41
EOF
42
while read cmd
43
do
44
sed -n "/NAME/,/git-$cmd/H;
45
\$ {x; s/.*git-$cmd - \\(.*\\)/ {\"$cmd\", \"\1\"},/; p}" \
46
"Documentation/git-$cmd.txt"
47
done
48
echo "};"