git flow branches have diverged
What happens here is that the remote has received updates, and git-flow requires that develop and origin/develop to be at the same commit before merging back the feature. This is to prevent bad conflicts when publishing the branch. To solve this, you need to: sync your local develop with origin: checkout develop, and pull from … Read more