Skip to content

Commit d0d5ba7

Browse files
committed
Merge branch 'jk/error-resolve-conflict-advice'
* jk/error-resolve-conflict-advice: error_resolve_conflict: drop quotations around operation error_resolve_conflict: rewrap advice message
2 parents 57a2eee + d795216 commit d0d5ba7

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

advice.c

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -76,16 +76,15 @@ int git_default_advice_config(const char *var, const char *value)
7676

7777
int error_resolve_conflict(const char *me)
7878
{
79-
error("'%s' is not possible because you have unmerged files.", me);
79+
error("%s is not possible because you have unmerged files.", me);
8080
if (advice_resolve_conflict)
8181
/*
8282
* Message used both when 'git commit' fails and when
8383
* other commands doing a merge do.
8484
*/
85-
advise(_("Fix them up in the work tree,\n"
86-
"and then use 'git add/rm <file>' as\n"
87-
"appropriate to mark resolution and make a commit,\n"
88-
"or use 'git commit -a'."));
85+
advise(_("Fix them up in the work tree, and then use 'git add/rm <file>'\n"
86+
"as appropriate to mark resolution and make a commit, or use\n"
87+
"'git commit -a'."));
8988
return -1;
9089
}
9190

0 commit comments

Comments
 (0)