美文网首页
现有项目更换git地址

现有项目更换git地址

作者: a_green | 来源:发表于2018-10-24 22:25 被阅读0次

    背景:由于一位同事的辞职,一不小心,也把他的项目的git地址搞成了404。现必须更换该项目的git地址。(不管原本的git地址是不是404,都可以根据需求更换git地址)

    说明现象:即便git地址404,但不会影响之前的代码运行。只是找不到git地址,也无法git pull等等。

    1. 创建的git地址:https://git.new.com/gourd/new.git
    2. 进入git_test根目录(可以执行git命令的话,就证明进入了git_test根目录。)
    3. 查看项目目前的git地址
    git remote -v 
    origin  https://git.old.com/gourd/old.git (fetch)
    origin  https://git.old.com/gourd/old.git (push)
    
    1. 重新设置git的新地址
    git remote set-url origin https://git.souche-inc.com/groud/new.git
    
    1. 验证项目目前的git地址
    git remote -v 
    origin  https://git.new.com/gourd/new.git (fetch)
    origin https://git.new.com/gourd/new.git (push)
    
    1. 将项目上传到git上
      git push -u origin --all
      git push -u origin --tags

    完成。但需要注意git分支,新上传项目的分支只会保留本地的,之前的远程分支不存在。

    其实还有更方便的操作,那就是idea。如图:
    第一步找到设置处:


    第二部更改git地址:


    相关文章

      网友评论

          本文标题:现有项目更换git地址

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