(I am using SourceTree as my Git tool, Beyond Compare to resolve merge conflicts, and Eclipse as my Java IDE.)
The conflict is complex enough that I cannot solve it in the merge tool, and will have to resolve it manually (across multiple files).
Ideally, I'd like to just take my version of the code, look at the conflicts in Beyond Compare, and use that to advise my changes in Eclipse.
Things that don't work:
Am I approaching this the wrong way? Should I be using a different strategy to resolve conflicts? Is there perhaps a feature of Git or BC4 that I could use to keep the conflict info separately whilst editing a specific version of the file?
Something I've found that works (inspired by Stun Brick's suggestion):
Start the merge, so that the LOCAL, BASE, and REMOTE files are generated.
Move these files out to a separate directory.
Resolve the merge by taking the local copy (In SourceTree: Resolve Conflicts -> Resolve Using Mine. In Git: git checkout --ours PATH/FILE
).
Open the local version of the file in Eclipse.
Open the LOCAL, BASE, and REMOTE files in BC4.
Now I can edit in Eclipse to my heart's content without affecting what BC4 displays.