Add testcase for merging in a CRLF repo
commiteea982843e34da679689f7c53a4874894a225e9f
authorMarius Storm-Olsen <marius@trolltech.com>
Mon, 9 Jun 2008 21:22:37 +0000 (9 22:22 +0100)
committerJunio C Hamano <gitster@pobox.com>
Mon, 9 Jun 2008 22:37:44 +0000 (9 15:37 -0700)
treee190da02b7840c896719432045ecfb83745bee9d
parent170e095a9cfe31617162e8a9b5063b8bc38af82b
Add testcase for merging in a CRLF repo

If you work on a repo with core.autocrlf == true, you would expect
every text file to have CRLF EOLs. However, if you by some operation,
get a conflict, then the conflicted file has LF EOLs.

Now, of course you'd go about resolving the files conflict, and then 'git
add <file>'. When you do that, you'll get the warning saying that LF will
be replaced by CRLF. Then you commit. The end result is that you have a
workingdir with a mix of LF and CRLF files, which after some more
operations may trigger a "whole file changed" diff, due to the workingdir
file now having LF EOLs.

An LF only conflict file results in the resolved file being in LF,
the commit is in LF and a warning saying that LF will be replaced
by CRLF, and the working dir ends up with a mix of CRLF and LF files.

Signed-off-by: Marius Storm-Olsen <marius@trolltech.com>
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t6033-merge-crlf.sh [new file with mode: 0755]