So I have master
and feature
branches. I do:
git checkout feature
git rebase master
I got a merge conflict:
Unmerged paths:
(use "git reset HEAD <file>..." to unstage)
(use "git add <file>..." to mark resolution)
both modified: /src/...
I run the mergetool
git mergetool
The conflict is nasty and my mergetool is no help. So I need to resolve it manually, so I close the merge tool and I answer:
Was the merge successful [y/n]? N
Continue merging other unresolved paths [y/n]? Y
It was the only conflict, so we exit
Now I expect to see 4 files: REMOTE, LOCAL, BASE, BACKUP around the file with the conflict, but I don't see them.
Question:
- How do I get to see REMOTE LOCAL BASE and BACKUP while doing rebasing?