diff options
author | Junio C Hamano <gitster@pobox.com> | 2009-08-26 12:15:15 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-08-26 12:15:15 -0700 |
commit | 68ea4741643d9e7c4bdac7cbbe6292edc69430ef (patch) | |
tree | 9d4875b04f27cd81668139749ebe5bc7fb403f62 /git-bisect.sh | |
parent | 31f0bce8537a38639385366f05ba43e91bd91e38 (diff) | |
parent | d8526a4c3b31d91b623f698be6ed7552ed4fdc52 (diff) | |
download | git-68ea4741643d9e7c4bdac7cbbe6292edc69430ef.tar.gz git-68ea4741643d9e7c4bdac7cbbe6292edc69430ef.tar.xz |
Merge branch 'maint'
* maint:
git-log: allow --decorate[=short|full]
Minor improvement to the write-tree documentation
git-bisect: call the found commit "*the* first bad commit"
Diffstat (limited to 'git-bisect.sh')
-rwxr-xr-x | git-bisect.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-bisect.sh b/git-bisect.sh index 896955365..6f6f03966 100755 --- a/git-bisect.sh +++ b/git-bisect.sh @@ -405,7 +405,7 @@ bisect_run () { exit $res fi - if grep "is first bad commit" "$GIT_DIR/BISECT_RUN" > /dev/null; then + if grep "is the first bad commit" "$GIT_DIR/BISECT_RUN" > /dev/null; then echo "bisect run success" exit 0; fi |