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?
If you want to merge your branch to master on remote, follow the below steps:
git push origin br-1
.git checkout master
.git pull origin master
.git merge br-1
. This may give you conflicts which need to be resolved and changes committed before moving further.git push origin master
.