summaryrefslogtreecommitdiff
path: root/transport.h
diff options
context:
space:
mode:
authorShawn O. Pearce <spearce@spearce.org>2009-10-31 00:47:27 (GMT)
committerJunio C Hamano <gitster@pobox.com>2009-10-31 02:20:54 (GMT)
commitcff7123c11aa2b1a849a46028d60b4bc0ab54c51 (patch)
treed7e3a46c8080751123d514c0bc7bd8820d0bb8e1 /transport.h
parent37a8768f83d5932ca66202f9cc4977c20b022e17 (diff)
downloadgit-cff7123c11aa2b1a849a46028d60b4bc0ab54c51.zip
git-cff7123c11aa2b1a849a46028d60b4bc0ab54c51.tar.gz
git-cff7123c11aa2b1a849a46028d60b4bc0ab54c51.tar.bz2
fetch: Allow transport -v -v -v to set verbosity to 3
Helpers might want a higher level of verbosity than just +1 (the porcelain default setting) and +2 (-v -v). Expand the field to allow verbosity in the range -1..3. Signed-off-by: Shawn O. Pearce <spearce@spearce.org> CC: Daniel Barkalow <barkalow@iabervon.org> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'transport.h')
-rw-r--r--transport.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/transport.h b/transport.h
index c14da6f..e4e6177 100644
--- a/transport.h
+++ b/transport.h
@@ -25,7 +25,7 @@ struct transport {
int (*disconnect)(struct transport *connection);
char *pack_lockfile;
- signed verbose : 2;
+ signed verbose : 3;
/* Force progress even if the output is not a tty */
unsigned progress : 1;
};