git delete remote repository code example

Example 1: how to remove remote origin from git repo

git remote remove origin

Example 2: remove git remote

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: delete git origin

git remote rm destination

Example 5: how to remove remote origin from git repo

git remote set-url origin git://new.url.here

Example 6: how to remove remote origin from git repo

git push -u origin master