I checked out a feature branch from develop called branch-x
. After a while other people pushed changes to the develop branch.
I want to merge those changes into my branch-x
. However if I do
git merge develop
it says "Already up-to-date" and doesn't allow me to merge.
git diff develop
shows that there are differences between branch-x
and develop.
How do I merge develop into branch-x
?