Possible Duplicate:
Git - how to force merge conflict and manual merge on selected file
We're trying to do a merge between two branches: stable code, and new features.
The merge functionality is not working for us: it sometimes shows conflicts, but often just overwrites files without telling us of any conflict, probably with what it thinks is the right version.
Is it possible to block this overwrite so that it shows us all the conflicting lines? We tried using git diff to get an idea of how extensive it was but there are a couple thousand lines because we had pretty extensive debugging on our stable branch...So we'd really need to get the merge functionality working if at all possible.
So we're in a bit of a messy situation, will greatly appreciate all help.