I'm using the git flow tools and I've gotten myself in a bit of problem. My git branches have diverged. I've read master branch and 'origin/master' have diverged, how to 'undiverge' branches'? and have tried to follow the steps, both attempting to merge and to rebase my local repository.
$ git flow feature finish showFindLogs
Branches 'develop' and 'origin/develop' have diverged.
And branch 'develop' may be fast-forwarded.
$ git merge origin/develop
Already up-to-date.
$ git rebase origin/develop
Current branch feature/showFindLogs is up to date.
$ git status
# On branch feature/showFindLogs
nothing to commit (working directory clean)
How can I get out of this? I'm done with the git flow feature and I'd just like to get my changes up to the remote. Thanks!
git checkout develop && git pull origin
create a "Merging origin/develop into develop" commit message? Wouldn'tgit checkout develop && git rebase origin
(akagit pull --rebase origin
) be better in this situation? – Outhaul