diff options
author | Christian Couder <chriscool@tuxfamily.org> | 2007-10-22 07:47:56 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-10-26 23:27:23 -0700 |
commit | 50e62a8e703b78fbe59d5f98b1bb36464570a815 (patch) | |
tree | f7c2bec9a7424df22c914ea7768947d6a27a9bea /log-tree.c | |
parent | 85b00455057c19a993eeaee2606af550b8d4de10 (diff) | |
download | git-50e62a8e703b78fbe59d5f98b1bb36464570a815.tar.gz git-50e62a8e703b78fbe59d5f98b1bb36464570a815.tar.xz |
rev-list: implement --bisect-all
This is Junio's patch with some stuff to make --bisect-all
compatible with --bisect-vars.
This option makes it possible to see all the potential
bisection points. The best ones are displayed first.
Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Diffstat (limited to 'log-tree.c')
-rw-r--r-- | log-tree.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/log-tree.c b/log-tree.c index 62edd3445..3763ce94f 100644 --- a/log-tree.c +++ b/log-tree.c @@ -15,7 +15,7 @@ static void show_parents(struct commit *commit, int abbrev) } } -static void show_decorations(struct commit *commit) +void show_decorations(struct commit *commit) { const char *prefix; struct name_decoration *decoration; |