美文网首页
git 远程仓库变更

git 远程仓库变更

作者: 流动码文 | 来源:发表于2018-04-20 11:41 被阅读9次

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

    方法有很多,这里简单介绍几种:

    以下均以项目git_test为例:
    老地址:http://192.168.1.12:9797/john/git_test.git
    新地址:http://192.168.100.235:9797/john/git_test.git
    远程仓库名称: origin

    方法一 通过命令直接修改远程地址

    1. 进入git_test根目录
    2. git remote 查看所有远程仓库, git remote xxx 查看指定远程仓库地址
    3. git remote set-url origin http://192.168.100.235:9797/john/git_test.git

    方法二 通过命令先删除再添加远程仓库

    1. 进入git_test根目录
    2. git remote 查看所有远程仓库, git remote xxx 查看指定远程仓库地址
    3. git remote rm origin
    4. git remote add origin http://192.168.100.235:9797/john/git_test.git

    方法三 直接修改配置文件

    1. 进入git_test/.git

    2. vim config
      [core] repositoryformatversion = 0 filemode = true logallrefupdates = true precomposeunicode = true [remote "origin"] url = http://192.168.100.235:9797/shimanqiang/assistant.git fetch = +refs/heads/*:refs/remotes/origin/* [branch "master"] remote = origin merge = refs/heads/master

      修改 [remote “origin”]下面的url即可

    变更完成后会再拉代码或者push代码时候会出现找到到对应分支的情况,这时候我们需要手动对应到远程的分支

    git branch --set-upstream master origin/master

    使用这个命令 对应到远程的master上。

    相关文章

      网友评论

          本文标题:git 远程仓库变更

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