how to delete remote branch using git bash code example
Example 1: github delete branch remote
$ git push origin --delete feature/login
Example 2: delete local and remote branch github
$ git push <remote_name> :<branch_name>
$ git push origin --delete feature/login
$ git push <remote_name> :<branch_name>