Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 335 Bytes

remove-a-remote.md

File metadata and controls

20 lines (14 loc) · 335 Bytes

How to Remove a Remote


Remove a remote from your repository.

$ git remote remove <repo>
OR
$ git remote rm <repo>

Check the list of your remotes to make sure you successfully removed the remote.

$ git remote
origin

link