summaryrefslogtreecommitdiff
path: root/advice.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2014-06-16 19:18:47 (GMT)
committerJunio C Hamano <gitster@pobox.com>2014-06-16 19:18:47 (GMT)
commitd0d5ba7e6ed1f9ea7b22dc8063b782b431ad37b7 (patch)
treefca3696ac31cb6e0d912200d59eb036107dfba9e /advice.c
parent57a2eee9250fadb72cb6bace963fd1ed683c83b8 (diff)
parentd795216ac35f08e1ae2a706fca4c06a887c7d797 (diff)
downloadgit-d0d5ba7e6ed1f9ea7b22dc8063b782b431ad37b7.zip
git-d0d5ba7e6ed1f9ea7b22dc8063b782b431ad37b7.tar.gz
git-d0d5ba7e6ed1f9ea7b22dc8063b782b431ad37b7.tar.bz2
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
Diffstat (limited to 'advice.c')
-rw-r--r--advice.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/advice.c b/advice.c
index 486f823..c50ebdf 100644
--- a/advice.c
+++ b/advice.c
@@ -76,16 +76,15 @@ int git_default_advice_config(const char *var, const char *value)
int error_resolve_conflict(const char *me)
{
- error("'%s' is not possible because you have unmerged files.", me);
+ error("%s is not possible because you have unmerged files.", me);
if (advice_resolve_conflict)
/*
* Message used both when 'git commit' fails and when
* other commands doing a merge do.
*/
- advise(_("Fix them up in the work tree,\n"
- "and then use 'git add/rm <file>' as\n"
- "appropriate to mark resolution and make a commit,\n"
- "or use 'git commit -a'."));
+ advise(_("Fix them up in the work tree, and then use 'git add/rm <file>'\n"
+ "as appropriate to mark resolution and make a commit, or use\n"
+ "'git commit -a'."));
return -1;
}