From: Jonathan Nieder Date: Tue, 17 Aug 2010 07:03:36 +0000 (-0500) Subject: merge script: tweak unmerged files message to match builtin X-Git-Tag: v1.7.3-rc0~16^2~11 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=64048d670b4810125493ff0a2bab88cb12344e7f;p=git.git merge script: tweak unmerged files message to match builtin Before: You are in the middle of a conflicted merge. After: Merge is not possible because you have unmerged files. I prefer the old message, but the new one is more consistent with other commands and tests expect it. In particular, without this change the scripted merge does not pass t3030. Based on v1.7.0-rc0~66^2 (Be more user-friendly when refusing to do something because of conflict., 2010-01-12). Cc: Matthieu Moy Signed-off-by: Jonathan Nieder Signed-off-by: Junio C Hamano --- diff --git a/contrib/examples/git-merge.sh b/contrib/examples/git-merge.sh index 72853cf7f..99fe1f259 100755 --- a/contrib/examples/git-merge.sh +++ b/contrib/examples/git-merge.sh @@ -25,7 +25,7 @@ require_work_tree cd_to_toplevel test -z "$(git ls-files -u)" || - die "You are in the middle of a conflicted merge." + die "Merge is not possible because you have unmerged files." LF=' '