When revising a pull request (it is: https://github.com/iluaepidi/widget/pull/8 but I don't know if that data is important) I read this message on github:
This branch has conflicts that must be resolved use the command line to resolve conflicts before continuing.
But then following the instructions given I cannot see those conflicts. Here my steps with comments:
Step 1: From your project repository, check out a new branch and test the changes.
git checkout -b p-sl-Reply-comments master
git pull https://github.com/p-sl/widget.git Reply-comments
(both done with no surprises)
Step 2: Merge the changes and update on GitHub.
OFFICIAL: git checkout master
(foreseeing the conflicts here, I made a new branch called 'conflictos')
git checkout -B conflictos master
(I got sure that both branches had the same code)
git diff conflictos..master
(returned empty)
OFFICIAL: git merge --no-ff p-sl-Reply-comments
(then mi command was the same but executed from conflictos rather than master) It returned a normal message:
Merge made by the 'recursive' strategy.
css/widgetfeedback_ul.css | 27 +++++++++++---
src/js/widget.js | 90 ++++++++++++++++++++++++++++++++++++++++++-----
ul-new-interface.html | 53 ++++++++++++++--------------
3 files changed, 131 insertions(+), 39 deletions(-)
OFFICIAL: git push origin master
(I haven't done this since I was expecting having to make some changes)
I think I would receive some messages about the conflicts (as seen e.g. on https://help.github.com/articles/resolving-a-merge-conflict-from-the-command-line/). I even opened those three files to look for the typical lines <<<< ==== >>>> but I couldn't find them.
Another questions here (e.g. "This pull request contains merge conflicts that must be resolved.") tell me about the conflicts I will see. This simply doesn't happen on my case
What am I doing wrong?