[PATCH] Fix "git-local-fetch -s" with packed source repository
[gitweb.git] / Documentation / git-rev-list.txt
index 8bf5d6124314005eb4b6ab61d7ba42d0e30fa73d..32c06a1662319a8c1a1d322a5a9faf54670aeb37 100644 (file)
@@ -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.