summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2007-12-02 04:05:49 (GMT)
committerJunio C Hamano <gitster@pobox.com>2007-12-02 04:05:49 (GMT)
commit8256c6e0107a51b2714f2e068b693025e4ddcae8 (patch)
tree525a1ebc229b510df0fcd5d04c0b05103d8b3f10
parentd6e09883f20f13c7e2da75225f4563ea9587e20b (diff)
parent15f80a539bddfbd5e0661714756576edb2053e35 (diff)
downloadgit-8256c6e0107a51b2714f2e068b693025e4ddcae8.zip
git-8256c6e0107a51b2714f2e068b693025e4ddcae8.tar.gz
git-8256c6e0107a51b2714f2e068b693025e4ddcae8.tar.bz2
Merge branch 'tt/help'
* tt/help: Remove hint to use "git help -a" Make the list of common commands more exclusive
-rwxr-xr-xgenerate-cmdlist.sh6
-rw-r--r--help.c1
2 files changed, 0 insertions, 7 deletions
diff --git a/generate-cmdlist.sh b/generate-cmdlist.sh
index 17df47b..1ba27ec 100755
--- a/generate-cmdlist.sh
+++ b/generate-cmdlist.sh
@@ -11,12 +11,9 @@ static struct cmdname_help common_cmds[] = {"
sort <<\EOF |
add
-apply
-archive
bisect
branch
checkout
-cherry-pick
clone
commit
diff
@@ -26,15 +23,12 @@ init
log
merge
mv
-prune
pull
push
rebase
reset
-revert
rm
show
-show-branch
status
tag
EOF
diff --git a/help.c b/help.c
index d340b6a..37a9c25 100644
--- a/help.c
+++ b/help.c
@@ -237,7 +237,6 @@ void list_common_cmds_help(void)
mput_char(' ', longest - strlen(common_cmds[i].name));
puts(common_cmds[i].help);
}
- puts("(use 'git help -a' to get a list of all installed git commands)");
}
static void show_man_page(const char *git_cmd)