diff options
author | Nanako Shiraishi <nanako3@lavabit.com> | 2009-08-26 10:38:50 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-08-26 21:05:57 +0200 |
commit | 21d0bc2f9a5bcbee2593e9f2ad05d64d3dcf3a0e (patch) | |
tree | c74e41b3cc9435fee0ddd7edd357b731a0dd6fe2 /bisect.c | |
parent | Merge branch 'js/maint-cover-letter-non-ascii' into maint (diff) | |
download | git-21d0bc2f9a5bcbee2593e9f2ad05d64d3dcf3a0e.tar.xz git-21d0bc2f9a5bcbee2593e9f2ad05d64d3dcf3a0e.zip |
git-bisect: call the found commit "*the* first bad commit"
Signed-off-by: Nanako Shiraishi <nanako3@lavabit.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'bisect.c')
-rw-r--r-- | bisect.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -991,7 +991,7 @@ int bisect_next_all(const char *prefix) if (!hashcmp(bisect_rev, current_bad_sha1)) { exit_if_skipped_commits(tried, current_bad_sha1); - printf("%s is first bad commit\n", bisect_rev_hex); + printf("%s is the first bad commit\n", bisect_rev_hex); show_diff_tree(prefix, revs.commits->item); /* This means the bisection process succeeded. */ exit(10); |