美文网首页
git 切换远程仓库地址

git 切换远程仓库地址

作者: _皓月__ | 来源:发表于2020-01-10 11:17 被阅读0次

    1、切换远程仓库地址:
    方式一:修改远程仓库地址

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

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

    【git remote rm origin】 删除现有远程仓库
    【git remote add origin url】添加新远程仓库

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

    原文链接:https://blog.csdn.net/yihanzhi/article/details/78801027

    相关文章

      网友评论

          本文标题:git 切换远程仓库地址

          本文链接:https://www.haomeiwen.com/subject/uqypactx.html