how to remove git origin 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 origin git
git remote rm origin
Example 5: git remote add wrong thing how to remove
git remote set-url origin https://github.com/your/repository
Example 6: how to deltyer remote origin
git remote rm origin