Does Git flow deletes branch on remote server?

Looking at the source it seems that the remote feature branch is deleted only if you call git flow feature finish with -F. However, this fetches the remote before finishing the feature. From the docs: -F fetch from $ORIGIN before performing finish Otherwise you can delete the remote branch manually with: git push origin :feature/new

delete a ‘feature’ branch using gitflow without merging into master branch

It seems that I can just delete the branch according to the following sources: Evan Hahn dominiksymonowicz To quote Evan: To trash a branch using git-flow , simply delete it like you’d normally delete a Git branch: git branch -D whatever/branch/you/wanna/delete Note that this does a forced delete, so anything you did on that branch …

Read more