aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2007-06-15 23:48:35 -0700
committerJunio C Hamano <gitster@pobox.com>2007-06-15 23:48:35 -0700
commit66e41f7b9912b3c9231c6577891eb12886d430e3 (patch)
tree8fea640ebddd125c6498b3cbfb42ae565804ff1b
parent7b99befef7d0ae173980f531e80916126011ca41 (diff)
downloadgit-66e41f7b9912b3c9231c6577891eb12886d430e3.tar.gz
git-66e41f7b9912b3c9231c6577891eb12886d430e3.tar.xz
Avoid diff cost on "git log -z"
Johannes and Marco discovered that "git log -z" spent cycles in diff even though there is no need to actually compute diffs. Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r--revision.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/revision.c b/revision.c
index 0125d4113..e43c64897 100644
--- a/revision.c
+++ b/revision.c
@@ -1171,7 +1171,8 @@ int setup_revisions(int argc, const char **argv, struct rev_info *revs, const ch
opts = diff_opt_parse(&revs->diffopt, argv+i, argc-i);
if (opts > 0) {
- revs->diff = 1;
+ if (strcmp(argv[i], "-z"))
+ revs->diff = 1;
i += opts - 1;
continue;
}