欢迎各位兄弟 发布技术文章
这里的技术是共享的
git init
to initialize my folder as git repo and then added a remote repository using git remote add origin url
. Now I want to remove this git remote add origin
and add a new repository git remote add origin new-url
. How can I do it?Instead of removing and re-adding, you can do this:
git remote set-url origin git://new.url.here
See this question: Change the URI (URL) for a remote Git repository
来自 http://stackoverflow.com/questions/16330404/how-to-remove-remote-origin-from-git-repo