From: Peter Hagervall Date: Fri, 16 Sep 2005 14:24:12 +0000 (+0200) Subject: [PATCH] PATCH Documentation/git-rev-list.txt typo fix X-Git-Tag: v0.99.7~24 X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=ed0a84883ec33cd2d4ee7f66204de7dab13353d8;p=git.git [PATCH] PATCH Documentation/git-rev-list.txt typo fix An earlier commit causes a mismatch in and tags, one way of fixing it is having no more than one caret symbol per line, which is the only solution I found in the asciidoc documentation. Ugly, but it works. [jc: ugly indeed but that is not Peter's fault.] Signed-off-by: Peter Hagervall Signed-off-by: Junio C Hamano --- diff --git a/Documentation/git-rev-list.txt b/Documentation/git-rev-list.txt index 8bf5d612..32c06a16 100644 --- a/Documentation/git-rev-list.txt +++ b/Documentation/git-rev-list.txt @@ -32,8 +32,11 @@ I have the commit object 'bar', but not 'foo'". The *--bisect* flag limits output to the one commit object which is roughly halfway between the included and excluded commits. Thus, -if 'git-rev-list --bisect foo ^bar ^baz' outputs 'midpoint', the output -of 'git-rev-list foo ^midpoint' and 'git-rev-list midpoint ^bar ^baz' +if 'git-rev-list --bisect foo ^bar +^baz' outputs 'midpoint', the output +of 'git-rev-list foo ^midpoint' and 'git-rev-list midpoint +^bar +^baz' would be of roughly the same length. Finding the change which introduces a regression is thus reduced to a binary search: repeatedly generate and test new 'midpoint's until the commit chain is of length one.