码迷,mamicode.com
首页 > 其他好文 > 详细

gitlab git仓库地址修改后更新方法

时间:2020-05-31 11:15:02      阅读:307      评论:0      收藏:0      [点我收藏+]

标签:ima   new   orm   pre   本地仓库   file   文件夹   repos   本地   

背景

由于gitlab地址修改后导致本地仓库的远程仓库失效

解决办法

  • 直接修改本地的远程仓库地址

    - 进入项目地址git remote -v 查看旧地址
    - 更新指令 git remote set-url origin newUrl
    
  • 先删除后新增

    - 删除旧地址 git remote rm origin 
    - 新增地址 git remote add origin newUrl
    
  • 修改配置文件地址

    - 进入项目.git文件夹下
    - 编辑配置文件 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即可

以上

gitlab git仓库地址修改后更新方法

标签:ima   new   orm   pre   本地仓库   file   文件夹   repos   本地   

原文地址:https://www.cnblogs.com/LandWind/p/12996600.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!