I'm in the middle of a rebase and I need to fix some merge conflicts. When I open the file in XCode, I see the source control conflict markers (<<<<<<<, etc) in the file.
How can I use XCode's mergetool to resolve these conflicts in a graphical fashion? I'm looking for this screen:
The FileMerge tool is a separate application, which you can open from the Xcode menu:
Pulling the answer from here
Then, when
git
tells you that there is a conflict, you can rungit mergetool
and it will open XCode's mergetool (like in the question's screenshot) and you can work through the conflict.