git remote delete code example
Example 1: how to remove remote origin from git repo
git remote remove origin
Example 2: git remove remote
$ git remote -v
> origin https://github.com/OWNER/REPOSITORY.git (fetch)
> origin https://github.com/OWNER/REPOSITORY.git (push)
> destination https://github.com/FORKER/REPOSITORY.git (fetch)
> destination https://github.com/FORKER/REPOSITORY.git (push)
$ git remote rm destination
$ git remote -v
> origin https://github.com/OWNER/REPOSITORY.git (fetch)
> origin https://github.com/OWNER/REPOSITORY.git (push)
Example 3: remove git remote
git remote remove origin
Example 4: remove remote git
git remote rm origin
Example 5: git delete remote name
git remote rm remote_name
Example 6: delete git origin
git remote rm destination