diff options
author | Junio C Hamano <gitster@pobox.com> | 2012-02-20 00:14:55 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-02-20 00:14:55 -0800 |
commit | 592d051759f27ba6f5295423c8e13922081d79e1 (patch) | |
tree | 7aad6f10decaa6fc849b3380bcd18c95223223ff /builtin/clone.c | |
parent | 13dd790bbe658e03e429d91b8babe3a284663d6e (diff) | |
parent | 01fdc21f6e90f56fc5a49cbba751d9ead19b2f03 (diff) | |
download | git-592d051759f27ba6f5295423c8e13922081d79e1.tar.gz |
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"), |