delete the branch with git bash code example
Example 1: git how to delete origin branch
$ git push origin --delete feature/login
Example 2: git remove upstream branch
$ git branch --unset-upstream
$ git push origin --delete feature/login
$ git branch --unset-upstream