Trying to use the extension to do a **release** for the first time; The release branch did **not** merge back into develop during finish and it was gone. This is something expected as using the git-flow command **git flow release finish xxx** does exactly that. I had to manually un-delete and merge the branch into develop. ``` git checkout -b release/xxx 123456789a git checkout develop git merge --no-ff release/xxx git branch -d release/xxx ``` Is this a bug or an expected behaviour?