From: Marius Storm-Olsen <hidden> Date: 2016-06-15 22:44:43
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 <redacted>
---
(Resend due to "git reset --hard initial" instead of "git reset
--hard a", in the first testcase)
Sorry, no patch to actually *fix* the problem.
Someone who knows the code in question will probably find the solution in a
fraction of the time that I would.
Also note that :1:file, :2:file and :3:file all are also in LF format, and not
CRLF, which you would want if core.autocrlf == true.
t/t6033-merge-crlf.sh | 52 +++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 52 insertions(+), 0 deletions(-)
create mode 100755 t/t6033-merge-crlf.sh
@@ -0,0 +1,52 @@+#!/bin/sh++append_cr(){+sed-e's/$/Q/'|trQ'\015'+}++remove_cr(){+tr'\015'Q|sed-e's/Q$//'+}++test_description='mergeconflictincrlfrepo++b---M+//+initial---a++'++../test-lib.sh++test_expect_successsetup'+gitconfigcore.autocrlftrue&&+echofoo|append_cr>file&&+gitaddfile&&+gitcommit-m"Initial"&&+gittaginitial&&+gitbranchside&&+echolinefroma|append_cr>file&&+gitcommit-m"add line from a"file&&+gittaga&&+gitcheckoutside&&+echolinefromb|append_cr>file&&+gitcommit-m"add line from b"file&&+gittagb&&+gitcheckoutmaster+'++test_expect_success'Check "ours" is CRLF''+gitreset--harda&&+gitmergeside-sours&&+catfile|remove_cr|append_cr>file.temp&&+test_cmpfilefile.temp+'++test_expect_success'Check that conflict file is CRLF''+gitreset--harda&&+!gitmergeside&&+catfile|remove_cr|append_cr>file.temp&&+test_cmpfilefile.temp+'++test_done
From: Johannes Sixt <hidden> Date: 2016-06-15 22:44:43
Marius Storm-Olsen schrieb:
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.
After reading these 3 lines I've no idea what you are talking about. Can
you translate this to English, please? ;-)
Sorry, no patch to actually *fix* the problem.
Then you should use test_expect_failure instead of test_expect_success.
And maybe also mention it in the commit message.
+test_expect_success 'Check that conflict file is CRLF' '
+ git reset --hard a &&
+ ! git merge side &&
From: Marius Storm-Olsen <hidden> Date: 2016-06-15 22:44:43
Johannes Sixt said the following on 09.06.2008 15:37:
Marius Storm-Olsen schrieb:
quoted
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.
After reading these 3 lines I've no idea what you are talking about. Can
you translate this to English, please? ;-)
Certainly :-)
It means that if you work on a repo with core.autocrlf == true, you'd
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.
quoted
Sorry, no patch to actually *fix* the problem.
Then you should use test_expect_failure instead of test_expect_success.
And maybe also mention it in the commit message.
Well, the test case is written in a way that it *should* pass (iow, it
_expects_ a success), but it currently doesn't. So, the goal is that
someone, who is more intimate with the code, can just run the testcase
until it passes (fixing in between each run, of course ;-)
quoted
+test_expect_success 'Check that conflict file is CRLF' '
+ git reset --hard a &&
+ ! git merge side &&
test_must_fail git merge side &&
Ah, I checked a few other testcases, where I saw the ! construct. I
don't mind changing it, if it's important. Does it add 'feature' to
the testcase by using test_must_fail, instead of '!' ?
From: Johannes Sixt <hidden> Date: 2016-06-15 22:44:43
Marius Storm-Olsen schrieb:
Johannes Sixt said the following on 09.06.2008 15:37:
quoted
Marius Storm-Olsen schrieb:
quoted
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.
After reading these 3 lines I've no idea what you are talking about. Can
you translate this to English, please? ;-)
Certainly :-)
It means that if you work on a repo with core.autocrlf == true, you'd
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.
Aha! Care to write it this way in the commit message in the next round? ;)
quoted
quoted
Sorry, no patch to actually *fix* the problem.
Then you should use test_expect_failure instead of test_expect_success.
And maybe also mention it in the commit message.
Well, the test case is written in a way that it *should* pass (iow, it
_expects_ a success), but it currently doesn't. So, the goal is that
someone, who is more intimate with the code, can just run the testcase
until it passes (fixing in between each run, of course ;-)
test_expect_failure has changed its meaning. It's now used to say precisly
what you describe here.
It means: "We should expect this command sequence to complete
successfully, but we know that there is a bug in a git command, and hence
we must expect failure until it is fixed."
Such a test is marked as "still broken", and the test run is not
interrupted. If the bug is fixed, the test is marked as "FIXED" until the
'test_expect_failure' is turned into 'test_expect_success'.
quoted
quoted
+test_expect_success 'Check that conflict file is CRLF' '
+ git reset --hard a &&
+ ! git merge side &&
test_must_fail git merge side &&
Ah, I checked a few other testcases, where I saw the ! construct. I
don't mind changing it, if it's important. Does it add 'feature' to the
testcase by using test_must_fail, instead of '!' ?
'! git cmd' says that any unusual exit is ok, even a segfault and
incorrect usage. 'test_must_fail git cmd' says that only deliberate error
exits are ok.
-- Hannes
From: Marius Storm-Olsen <hidden> Date: 2016-06-15 22:44:43
Marius Storm-Olsen said the following on 09.06.2008 16:46:
... 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.
..actually, it's more like applying patches and cherry-picking then
breaks when the touch the same file, if I recall correctly.
Thanks for all the pointers, I'll send an updated patch tomorrow.
--
.marius
From: Johannes Schindelin <hidden> Date: 2016-06-15 22:44:43
From: Marius Storm-Olsen <redacted>
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 <redacted>
Signed-off-by: Johannes Schindelin <redacted>
---
t/t6033-merge-crlf.sh | 52 +++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 52 insertions(+), 0 deletions(-)
create mode 100755 t/t6033-merge-crlf.sh
@@ -0,0 +1,52 @@+#!/bin/sh++append_cr(){+sed-e's/$/Q/'|trQ'\015'+}++remove_cr(){+tr'\015'Q|sed-e's/Q$//'+}++test_description='mergeconflictincrlfrepo++b---M+//+initial---a++'++../test-lib.sh++test_expect_successsetup'+gitconfigcore.autocrlftrue&&+echofoo|append_cr>file&&+gitaddfile&&+gitcommit-m"Initial"&&+gittaginitial&&+gitbranchside&&+echolinefroma|append_cr>file&&+gitcommit-m"add line from a"file&&+gittaga&&+gitcheckoutside&&+echolinefromb|append_cr>file&&+gitcommit-m"add line from b"file&&+gittagb&&+gitcheckoutmaster+'++test_expect_success'Check "ours" is CRLF''+gitreset--hardinitial&&+gitmergeside-sours&&+catfile|remove_cr|append_cr>file.temp&&+test_cmpfilefile.temp+'++test_expect_failure'Check that conflict file is CRLF''+gitreset--harda&&+test_must_failgitmergeside&&+catfile|remove_cr|append_cr>file.temp&&+test_cmpfilefile.temp+'++test_done
@@ -560,6 +567,7 @@ static void update_file_flags(const unsigned char *sha,}elsedie("do not know what to do with %06o %s '%s'",mode,sha1_to_hex(sha),path);+free(buf);}update_index:if(update_cache)
@@ -42,7 +42,7 @@ test_expect_success 'Check "ours" is CRLF' 'test_cmpfilefile.temp'-test_expect_failure'Check that conflict file is CRLF''+test_expect_success'Check that conflict file is CRLF''gitreset--harda&&test_must_failgitmergeside&&catfile|remove_cr|append_cr>file.temp&&