remove all remote git code example
Example 1: 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 2: Delete a Git Branch In Local And Remotely
git push <remote_name> --delete <branch_name>