blame: improve diagnosis for "--reverse NEW"
[gitweb.git] / builtin / blame.c
index 21f42b0b62b81b637f1cc9589cd6c0306a93d05e..a027b8a6075dd2e300b307c4c20f41a4fbfc9566 100644 (file)
@@ -2466,14 +2466,14 @@ static char *prepare_initial(struct scoreboard *sb)
                if (obj->type != OBJ_COMMIT)
                        die("Non commit %s?", revs->pending.objects[i].name);
                if (sb->final)
-                       die("More than one commit to dig down to %s and %s?",
+                       die("More than one commit to dig up from, %s and %s?",
                            revs->pending.objects[i].name,
                            final_commit_name);
                sb->final = (struct commit *) obj;
                final_commit_name = revs->pending.objects[i].name;
        }
        if (!final_commit_name)
-               die("No commit to dig down to?");
+               die("No commit to dig up from?");
        return xstrdup(final_commit_name);
 }