On Wed, Jul 01, 2009 at 12:33:10PM +0900, Nanako Shiraishi wrote: > The last part clearly shows that this change introduces a usability > regression. In the error message the user can no longer see which file > was problematic. Not true. The filename is still printed two times in the case of "git merge", and four times with "git rebase". The user still sees the required information, there are just fewer repetitions. The previous warning was a bit nicer for copy-paste, allthough I don't see why it should print things so differently compared to textual conflicts. > - grep "Cannot merge binary files: HEAD:binary-file vs. F:binary-file" \ > + grep "Cannot merge binary files: HEAD vs. F" \ > merge.err We could als fix that test by expecting the filename on stdout: diff --git a/t/t6024-recursive-merge.sh b/t/t6024-recursive-merge.sh index 129fa30..0c6b1ea 100755 --- a/t/t6024-recursive-merge.sh +++ b/t/t6024-recursive-merge.sh @@ -65,18 +65,18 @@ test_expect_success "combined merge conflicts" " " cat > expect << EOF -<<<<<<< HEAD:a1 +<<<<<<< HEAD F ======= G ->>>>>>> G:a1 +>>>>>>> G EOF test_expect_success "result contains a conflict" "test_cmp expect a1" git ls-files --stage > out cat > expect << EOF -100644 da056ce14a2241509897fa68bb2b3b6e6194ef9e 1 a1 +100644 439cc46de773d8a83c77799b7cc9191c128bfcff 1 a1 100644 cf84443e49e1b366fac938711ddf4be2d4d1d9e9 2 a1 100644 fd7923529855d0b274795ae3349c5e0438333979 3 a1 EOF @@ -93,8 +93,8 @@ test_expect_success 'refuse to merge binary files' ' git add binary-file && git commit -m binary2 && test_must_fail git merge F > merge.out 2> merge.err && - grep "Cannot merge binary files: HEAD:binary-file vs. F:binary-file" \ - merge.err + grep "Cannot merge binary files: HEAD vs. F" merge.err + grep "Merge conflict in binary-file" merge.out ' test_expect_success 'mark rename/delete as unmerged' ' bye, Martin -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html