
▲ 1 r/VisualStudio
How to do not ignore trim whitespaces in resolve merge conflict window?
I have branch 'test' with file test.cs:
using System;
if (true) {
call(argument);
}
Also I have branch 'test-2' with file test.cs:
using System;
if (true) {
if (something)
call(argument);
else
return;
}
When I merging 'test' into 'test-2' and trying resolve conflict, visual studio breaks single conflict to three smaller, but does not include call(argument); line (or just leading whitespaces) into any conflict block as seen in middle tab on screenshot. As result changes before call(argument); become lost.
Is there any way to change such behavior?
u/MikasaTanikawa — 6 days ago