diff options
author | Junio C Hamano <gitster@pobox.com> | 2021-09-08 13:30:29 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2021-09-08 13:30:29 -0700 |
commit | 31e4a0db0337e2aa972d9b9f11a332dff7c4cbcb (patch) | |
tree | 1618c2d280dd4ae566da5d1914d89c5275a87f07 /builtin/rebase.c | |
parent | Merge branch 'ab/ls-remote-packet-trace' (diff) | |
parent | rebase: emit one "fatal" in "fatal: fatal: <error>" (diff) | |
download | tgif-31e4a0db0337e2aa972d9b9f11a332dff7c4cbcb.tar.xz |
Merge branch 'ab/rebase-fatal-fatal-fix'
Error message fix.
* ab/rebase-fatal-fatal-fix:
rebase: emit one "fatal" in "fatal: fatal: <error>"
Diffstat (limited to 'builtin/rebase.c')
-rw-r--r-- | builtin/rebase.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/rebase.c b/builtin/rebase.c index c284a7ace1..6138009d6e 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. */ |