diff options
author | Junio C Hamano <junkio@cox.net> | 2006-05-08 16:40:23 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-05-08 16:40:23 -0700 |
commit | 45f75a0167b4a4693f2c6005bf7db231ca91ecc8 (patch) | |
tree | d7cb273a493d3b37aad4a41284cd8e2fb68f80c4 /Documentation | |
parent | fd60acaced6de16ebfb66959067e2b29f99a133e (diff) | |
parent | 31fff305bcc6db3b8082eac7fc9e441b27964fea (diff) | |
download | git-45f75a0167b4a4693f2c6005bf7db231ca91ecc8.tar.gz |
Merge branch 'fix'
* fix:
Separate object name errors from usage errors
Documentation: {caret} fixes (git-rev-list.txt)
Fix "git diff --stat" with long filenames
Fix repo-config set-multivar error return path.
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/git-rev-list.txt | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Documentation/git-rev-list.txt b/Documentation/git-rev-list.txt index 8255ae1bce..ad6d14c55a 100644 --- a/Documentation/git-rev-list.txt +++ b/Documentation/git-rev-list.txt @@ -68,9 +68,10 @@ OPTIONS --bisect:: Limit 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' would be of roughly the same length. Finding the change + --bisect foo {caret}bar {caret}baz' outputs 'midpoint', the output + of 'git-rev-list foo {caret}midpoint' and 'git-rev-list midpoint + {caret}bar {caret}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. |