How to delete a github branch on CLI code example
Example 1: delete remote git branch
git push --delete remoteName branchName
Example 2: delete git origin
git remote rm destination
git push --delete remoteName branchName
git remote rm destination