diff options
author | Daniel Barkalow <barkalow@iabervon.org> | 2007-10-02 22:49:15 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-10-02 21:12:01 -0700 |
commit | 2b5a06edca8f7237aad6464b349b79772024d2a2 (patch) | |
tree | b4acc4d6418dbcb610cc4f20946e3cd1621167a3 /transport.h | |
parent | cd547b4886c5338a70eb8a674bfc40eac5cab3d9 (diff) | |
download | git-2b5a06edca8f7237aad6464b349b79772024d2a2.tar.gz |
Restore default verbosity for http fetches.
This adds a verbosity level below 0 for suppressing default messages
with --quiet, and makes the default for http be verbose instead of
quiet. This matches the behavior of the shell script version of git-fetch.
Signed-off-by: Daniel Barkalow <barkalow@iabervon.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'transport.h')
-rw-r--r-- | transport.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/transport.h b/transport.h index 6e318e4e8c..4bb51d7b7f 100644 --- a/transport.h +++ b/transport.h @@ -24,7 +24,7 @@ struct transport { int (*disconnect)(struct transport *connection); char *pack_lockfile; - unsigned verbose : 1; + signed verbose : 2; }; #define TRANSPORT_PUSH_ALL 1 |