I'm performing a rebase of my feature branch with the master branch on a project. The rebase resulted with some conflicts (which is expected). I'm at stage when I need to resolve those conflicts and type git rebase --continue
when that is ready. So, I have some files I committed in a state like:
<<<<<<<<< HEAD
[some code]
||||||| merged ancestors
[some code]
=========
[some code]
>>>>>>>>>> [Title of my commit]
Is it possible to resolve that with kdiff3 (or, if not, some other tool)? All what I found in Google was describing how to merge branches with this tool, but none mentioned rebase.
I'm working on Centos btw.