aboutsummaryrefslogtreecommitdiff
path: root/fetch-pack.c
diff options
context:
space:
mode:
authorUwe Kleine-König <zeisberg@informatik.uni-freiburg.de>2007-01-19 13:43:00 +0100
committerJunio C Hamano <junkio@cox.net>2007-01-19 17:54:32 -0800
commit18bd8821cace2f830e34574df6df30e072d0ed40 (patch)
treeb399a325888002df2ee2e74441b1622b0f20daf1 /fetch-pack.c
parent89bf207758530fd151895680f7236ce626feea9c (diff)
downloadgit-18bd8821cace2f830e34574df6df30e072d0ed40.tar.gz
git-18bd8821cace2f830e34574df6df30e072d0ed40.tar.xz
Update documentation of fetch-pack, push and send-pack
add all supported options to Documentation/git-....txt and the usage strings. Signed-off-by: Uwe Kleine-König <zeisberg@informatik.uni-freiburg.de> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'fetch-pack.c')
-rw-r--r--fetch-pack.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fetch-pack.c b/fetch-pack.c
index 1530a9479..726140a1a 100644
--- a/fetch-pack.c
+++ b/fetch-pack.c
@@ -12,7 +12,7 @@ static int verbose;
static int fetch_all;
static int depth;
static const char fetch_pack_usage[] =
-"git-fetch-pack [--all] [-q] [-v] [-k] [--thin] [--exec=upload-pack] [--depth=<n>] [host:]directory <refs>...";
+"git-fetch-pack [--all] [--quiet|-q] [--keep|-k] [--thin] [--exec=<git-upload-pack>] [--depth=<n>] [-v] [<host>:]<directory> [<refs>...]";
static const char *exec = "git-upload-pack";
#define COMPLETE (1U << 0)