IDEA git修改远程仓库地址

方法有三种:

方法1.修改命令

git remote set-url origin <url>

方法2.先删后加

git remote rm origin
git remote add origin [url]

方法3.直接修改config文件

原文地址:https://www.cnblogs.com/shanheyongmu/p/8638543.html