美文网首页
git 修改远程仓库地址

git 修改远程仓库地址

作者: 羊驼626 | 来源:发表于2019-08-05 15:12 被阅读0次

    命令行修改远程仓库地址

    git remote set-url origin 远程仓库地址
    

    修改配置文件

    //  .git>config 文件
    
    [core]
      repositoryformatversion = 0
      filemode = true
      logallrefupdates = true
      precomposeunicode = true
    
    [remote "origin"]
      # 修改成新的仓库地址
      url = 远程仓库地址
      fetch = +refs/heads/*:refs/remotes/origin/*
    
    [branch "master"]
      remote = origin
      merge = refs/heads/master
    

    相关文章

      网友评论

          本文标题:git 修改远程仓库地址

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