Question
How to merge branch to master?
I do have a local branch with some changes, and I want to merge it to remote master. When I run: git merge master
I get:
Already up-to-date
but I still can see that the master doesn't contain the new changes.
I checked the following issue Git merge reports “Already up-to-date” though there is a difference Ask, but it seems in one hand to be outdated, and on the other hand, none of the hints there were helpful.
Any idea or hint?