git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] rev-list: fix showing distance when using --bisect-all
@ 2009-02-08 14:54 Christian Couder
  0 siblings, 0 replies; only message in thread
From: Christian Couder @ 2009-02-08 14:54 UTC (permalink / raw)
  To: Junio C Hamano; +Cc: git, Linus Torvalds

Since commit d467a52 ("Make '--decorate' set an explicit 'show_decorations'
flag", Nov 3 2008), "git rev-list --bisect-all" doesn't show the distance
any more when displaying the best bisection commits.

For example:

$ git rev-list --bisect-all HEAD --not HEAD^

gives:

621f1b4bcf40f1469fc59202248df35619e33c82

instead of:

621f1b4bcf40f1469fc59202248df35619e33c82 (dist=0)

This patch fixes that.

Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
---
 builtin-rev-list.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/builtin-rev-list.c b/builtin-rev-list.c
index 857742a..436afa4 100644
--- a/builtin-rev-list.c
+++ b/builtin-rev-list.c
@@ -608,6 +608,7 @@ int cmd_rev_list(int argc, const char **argv, const char *prefix)
 		if (!strcmp(arg, "--bisect-all")) {
 			bisect_list = 1;
 			bisect_find_all = 1;
+			revs.show_decorations = 1;
 			continue;
 		}
 		if (!strcmp(arg, "--bisect-vars")) {
-- 
1.6.2.rc0.dirty

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2009-02-08 14:58 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-02-08 14:54 [PATCH] rev-list: fix showing distance when using --bisect-all Christian Couder

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).