Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2021-10-12 23:51:27 +0300
committerJunio C Hamano <gitster@pobox.com>2021-10-12 23:51:27 +0300
commit9b338cbefdfada94f51075d9013f0c77d74f95a3 (patch)
tree8d023203ce1a1c64b0f65d17de904db478d91ffa
parentd79e73a833d3c63188e856ddfb43aa3b8129c6a9 (diff)
parent0160f7e7252f2fa40e591d5fa9a30674334050f9 (diff)
Merge branch 'ab/rebase-fatal-fatal-fix' into maint
Error message fix. * ab/rebase-fatal-fatal-fix: rebase: emit one "fatal" in "fatal: fatal: <error>"
-rw-r--r--builtin/rebase.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/rebase.c b/builtin/rebase.c
index 33e0961900..66a0a0f0d0 100644
--- a/builtin/rebase.c
+++ b/builtin/rebase.c
@@ -1918,7 +1918,7 @@ int cmd_rebase(int argc, const char **argv, const char *prefix)
&options.orig_head))
options.head_name = NULL;
else
- die(_("fatal: no such branch/commit '%s'"),
+ die(_("no such branch/commit '%s'"),
branch_name);
} else if (argc == 0) {
/* Do not need to switch branches, we are already on it. */