diff options
author | Junio C Hamano <gitster@pobox.com> | 2012-02-20 09:14:55 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-02-20 09:14:55 +0100 |
commit | 592d051759f27ba6f5295423c8e13922081d79e1 (patch) | |
tree | 7aad6f10decaa6fc849b3380bcd18c95223223ff /builtin/clone.c | |
parent | Merge branch 'cb/receive-pack-keep-errors' (diff) | |
parent | push/fetch/clone --no-progress suppresses progress output (diff) | |
download | git-592d051759f27ba6f5295423c8e13922081d79e1.tar.xz git-592d051759f27ba6f5295423c8e13922081d79e1.zip |
Merge branch 'cb/transfer-no-progress'
* cb/transfer-no-progress:
push/fetch/clone --no-progress suppresses progress output
Diffstat (limited to 'builtin/clone.c')
-rw-r--r-- | builtin/clone.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/builtin/clone.c b/builtin/clone.c index 7559f62bc7..bbd5c96237 100644 --- a/builtin/clone.c +++ b/builtin/clone.c @@ -45,7 +45,7 @@ static char *option_branch = NULL; static const char *real_git_dir; static char *option_upload_pack = "git-upload-pack"; static int option_verbosity; -static int option_progress; +static int option_progress = -1; static struct string_list option_config; static struct string_list option_reference; @@ -60,8 +60,8 @@ static int opt_parse_reference(const struct option *opt, const char *arg, int un static struct option builtin_clone_options[] = { OPT__VERBOSITY(&option_verbosity), - OPT_BOOLEAN(0, "progress", &option_progress, - "force progress reporting"), + OPT_BOOL(0, "progress", &option_progress, + "force progress reporting"), OPT_BOOLEAN('n', "no-checkout", &option_no_checkout, "don't create a checkout"), OPT_BOOLEAN(0, "bare", &option_bare, "create a bare repository"), |