git设置远程仓库地址

方法有三种:

1、修改命令:git remote set-url origin [url]

2、先删除后添加:

git remote rm origin
git remote add origin [url]
 
3、修改.git/config文件
 
 
原文地址:https://www.cnblogs.com/shengulong/p/9248864.html