aboutsummaryrefslogtreecommitdiff
path: root/bisect.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2009-08-26 12:15:15 -0700
committerJunio C Hamano <gitster@pobox.com>2009-08-26 12:15:15 -0700
commit68ea4741643d9e7c4bdac7cbbe6292edc69430ef (patch)
tree9d4875b04f27cd81668139749ebe5bc7fb403f62 /bisect.c
parent31f0bce8537a38639385366f05ba43e91bd91e38 (diff)
parentd8526a4c3b31d91b623f698be6ed7552ed4fdc52 (diff)
downloadgit-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 'bisect.c')
-rw-r--r--bisect.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bisect.c b/bisect.c
index 7f20acb4b..dc18db8af 100644
--- a/bisect.c
+++ b/bisect.c
@@ -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);