优选主流主机商
任何主机均需规范使用

git如何切换远程地址 git切换远程仓库地址的方法

本文主要介绍使用git是切换远程仓库地址的2种方法,git学习不迷茫。

第一种直接切换远程仓库地址

git remote set-url origin URL

【git remote set-url origin URL】 更换远程仓库地址,URL为新地址。

第二种先删除远程仓库地址,然后再添加

git remote rm origin 删除远程仓库地址

git remote add origin url 设置远程仓库地址

【git remote rm origin】 删除现有远程仓库

【git remote add origin url】添加新远程仓库

查看远程仓库地址

git remote -v

【git remote -v 】查看远程仓库的地址

以上就是git修改远程仓库地址的2种方法介绍。

未经允许不得转载:搬瓦工中文网 » git如何切换远程地址 git切换远程仓库地址的方法