github delete remote code example
Example 1: how to remove a git remote origin
git remote remove origin
Example 2: 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 3: delete git branch remote
git push -d origin <branch_name>
Example 4: git branch delete remote
$ git push origin --delete feature/login