I have a problem with editing one single file (which is called AssemblyVersionInfo
) by two persons simultaneously. If first person change its content from version: 1.0.0.244
to version: 1.0.0.245
git just merge these changes and result is version: 1.0.0.245
, when it should be version: 1.0.0.246
. It looks just like a race condition on variable update without synchronization.
It is possible to force git to show merge conflict if one file was changed on different branches even if its content is identical?