You can
git remote set-url origin git://new.url.here
(see git help remote) or you can just edit .git/config and change the URLs there. You're not in any danger of losing history unless you do something very silly (and if you're worried, just make a copy of your repo, since your repo is your history.)
http://stackoverflow.com/questions/2432764/how-to-change-a-remote-repository-uri-using-git
git remote set-url origin git://new.url.here
(see git help remote) or you can just edit .git/config and change the URLs there. You're not in any danger of losing history unless you do something very silly (and if you're worried, just make a copy of your repo, since your repo is your history.)
http://stackoverflow.com/questions/2432764/how-to-change-a-remote-repository-uri-using-git
本文介绍如何使用Git命令行工具更改远程仓库的URI地址。通过使用`git remote set-url origin`命令或者直接编辑`.git/config`文件来实现。在操作过程中,只要不执行极端错误的操作,是不会丢失历史记录的。

被折叠的 条评论
为什么被折叠?



