Translate

Wednesday, October 28, 2015

How to remove remote origin URL from git repository








To remove a remote URL from GIT, you must  use the command git remote remove.

Here is an example:
  
     git remote remove origin
  
or you can use:

  
    git remote rm origin
  

No comments:

Post a Comment