Home Git切换远程仓库地址
Post
Cancel

Git切换远程仓库地址

Git仓库的服务器IP地址变了,本地代码挺多,重新检出太占时间,可以修改一个什么配置让本地仓库和新的远程仓库建立关联吗, 答案是肯定的!

方式一:修改远程仓库地址

1
2
git remote -v  # 查看当前远程仓库地址
git remote set-url origin <new url>  # 修改远程地址为新的地址 <new url> 改为新的地址

方式二:先删除远程仓库地址,然后再添加

1
2
3
git remote -v  # 查看当前远程仓库地址
git remote rm origin  # 删除现有远程仓库
git remote add origin url  # 添加新远程仓库
This post is licensed under CC BY 4.0 by the author.