I did a pull request from my EVRO branch to my STABLE branch.
This branch has conflicts that must be resolved
Use the command line to resolve conflicts before continuing.
Conflicting files
.idea/.idea.TibiaScape/.idea/workspace.xml
OpenGLTemplate/Release/Creature.obj
OpenGLTemplate/Release/TibiaScape.iobj
OpenGLTemplate/Release/TibiaScape.ipdb
OpenGLTemplate/Release/TibiaScape.tlog/CL.command.1.tlog
OpenGLTemplate/Release/TibiaScape.tlog/CL.read.1.tlog
OpenGLTemplate/Release/TibiaScape.tlog/CL.write.1.tlog
OpenGLTemplate/Release/TibiaScape.tlog/link.read.1.tlog
OpenGLTemplate/Release/TibiaScape.tlog/link.write.1.tlog
OpenGLTemplate/Release/Waypoint.obj
OpenGLTemplate/Release/dllmain.obj
OpenGLTemplate/Release/hooks.obj
OpenGLTemplate/Release/vc143.pdb
OpenGLTemplate/Source/dllmain.cpp
Release/TibiaScape.dll
Release/TibiaScape.pdb
I can see an information box in the "Resolve conflicts" button that says: These conflicts are too complex to resolve in the web editor
So I'm trying to follow the github documentation, it says that with command git status I will get all conflicts, then I can just navigate to the file and fix manually. But my reality is different:
PS C:\Users\Adrian\Documents\GitHub\TibiaScape> git checkout stable
Switched to branch 'stable'
Your branch is up to date with 'origin/stable'.
PS C:\Users\Adrian\Documents\GitHub\TibiaScape> git status
On branch stable
Your branch is up to date with 'origin/stable'.
PS C:\Users\Adrian\Documents\GitHub\TibiaScape> git checkout evro
Switched to branch 'evro'
Your branch is based on 'origin/evro', but the upstream is gone.
(use "git branch --unset-upstream" to fixup)
PS C:\Users\Adrian\Documents\GitHub\TibiaScape> git branch --unset-upstream
PS C:\Users\Adrian\Documents\GitHub\TibiaScape> git status
On branch evro
nothing to commit, working tree clean
How can I review the conflicts so I can fix them and continue with the merge?