git command delete branch remote code example
Example 1: delete git origin
git remote rm destination
Example 2: delete local and remote branch github
$ git push <remote_name> :<branch_name>
git remote rm destination
$ git push <remote_name> :<branch_name>