Force Excluir um ramo no Git

git branch -D <branch_name>
#This is use to force delete a branch that cannot be deleted with
git branch -d <branch_name>
Kwams