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
developwithorigin: checkoutdevelop, and pull fromorigintodevelop(git checkout develop && git pull origin) -
rebase your feature on
developwithgit flow feature rebase showFindLogs. You may have conflicts here if you’re unlucky -
check that it doesn’t break anything
-
git flow feature finish showFindLogs