We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents fac96df + ff29a61 commit f12cb50Copy full SHA for f12cb50
advice.c
@@ -191,9 +191,10 @@ int error_resolve_conflict(const char *me)
191
error(_("Pulling is not possible because you have unmerged files."));
192
else if (!strcmp(me, "revert"))
193
error(_("Reverting is not possible because you have unmerged files."));
194
+ else if (!strcmp(me, "rebase"))
195
+ error(_("Rebasing is not possible because you have unmerged files."));
196
else
- error(_("It is not possible to %s because you have unmerged files."),
- me);
197
+ BUG("Unhandled conflict reason '%s'", me);
198
199
if (advice_enabled(ADVICE_RESOLVE_CONFLICT))
200
/*
0 commit comments