summaryrefslogtreecommitdiff
path: root/advice.c
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2014-06-03 07:23:49 (GMT)
committerJunio C Hamano <gitster@pobox.com>2014-06-03 17:04:21 (GMT)
commitd795216ac35f08e1ae2a706fca4c06a887c7d797 (patch)
tree4a843431db1eee9375e98ad27ed4dd8c1fb01044 /advice.c
parentc057b2424a479a2219666f3806c0dd93867ca5c9 (diff)
downloadgit-d795216ac35f08e1ae2a706fca4c06a887c7d797.zip
git-d795216ac35f08e1ae2a706fca4c06a887c7d797.tar.gz
git-d795216ac35f08e1ae2a706fca4c06a887c7d797.tar.bz2
error_resolve_conflict: drop quotations around operation
When you try to commit with unmerged entries, you get an error like: $ git commit error: 'commit' is not possible because you have unmerged files. The quotes around "commit" are clunky; the user doesn't care that this message is a template with the command-name filled in. Saying: error: commit is not possible because you have unmerged files is easier to read. As this code is called from other places, we may also end up with: $ git merge error: merge is not possible because you have unmerged files $ git cherry-pick foo error: cherry-pick is not possible because you have unmerged files $ git revert foo error: revert is not possible because you have unmerged files All of which look better without the quotes. This also happens to match the behavior of "git pull", which generates a similar message (but does not share code, as it is a shell script). Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'advice.c')
-rw-r--r--advice.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/advice.c b/advice.c
index d458ae7..07d0109 100644
--- a/advice.c
+++ b/advice.c
@@ -78,7 +78,7 @@ 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