diff options
author | Uwe Kleine-König <zeisberg@informatik.uni-freiburg.de> | 2007-01-19 13:43:00 +0100 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-01-19 17:54:32 -0800 |
commit | 18bd8821cace2f830e34574df6df30e072d0ed40 (patch) | |
tree | b399a325888002df2ee2e74441b1622b0f20daf1 /send-pack.c | |
parent | 89bf207758530fd151895680f7236ce626feea9c (diff) | |
download | git-18bd8821cace2f830e34574df6df30e072d0ed40.tar.gz |
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 'send-pack.c')
-rw-r--r-- | send-pack.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/send-pack.c b/send-pack.c index 6756264b29..ec2c1089b2 100644 --- a/send-pack.c +++ b/send-pack.c @@ -6,8 +6,8 @@ #include "exec_cmd.h" static const char send_pack_usage[] = -"git-send-pack [--all] [--exec=git-receive-pack] <remote> [<head>...]\n" -" --all and explicit <head> specification are mutually exclusive."; +"git-send-pack [--all] [--force] [--exec=<git-receive-pack>] [--verbose] [--thin] [<host>:]<directory> [<ref>...]\n" +" --all and explicit <ref> specification are mutually exclusive."; static const char *exec = "git-receive-pack"; static int verbose; static int send_all; |