git remote -v remove code example

Example 1: delete a branch in git

// delete branch locally
git branch -d localBranchName

// delete branch remotely
git push origin --delete remoteBranchName

Example 2: how to remove a git remote origin

git remote remove origin

Example 3: remove remote git

# The example will remove the github remote. 
# Note that the command will not delete the repository, 
# just the local reference.
git remote rm origin

Example 4: github delete branch remote

$ git push -d <remote_name> <branch_name>
$ git branch -d <branch_name>

Example 5: delete local and remote branch github

$ git push <remote_name> :<branch_name>

Example 6: delete local and remote branch github

git branch -d branch_namegit branch -D branch_name