GIT中修改远端URL的方法有三种:
1.修改命令
git remote set-url origin [url]
2.先删后加
git remote rm origin
git remote add origin [url]
3.直接修改config文件,工程目录下的.git文件夹下面的config文件
[remote "origin"]
url = git@10.0.63.12:yourProject.git
fetch = +refs/heads/*:refs/remotes/origin/*
网友评论