赞
踩
由于私服的 gitlab 的地址变更,导致部分项目代码提交不上去,需要修改远端仓地址。
其它需要修改远程仓地址的情况如:切换git clone 协议由ssh变为https。
# 查看远端地址
git remote -v
# 查看远端仓库名
git remote
# 重新设置远程仓库
git remote set-url origin https://gitee.com/xx/xx.git (新地址)
# 删除远程的仓库
git remote rm origin
# 重新添加远程仓库
git remote add origin https://gitee.com/xx/xx.git(新地址)
打开项目目录下隐藏文件夹.git下的config文件内容,将 [remote “origin”] url 修改成你需要替换的新地址:
新地址:
[core]
repositoryformatversion = 0
filemode = false
bare = false
logallrefupdates = true
symlinks = false
ignorecase = true
[submodule]
active = .
[remote "origin"]
url = https://gitee.com/xx/xx.git(新地址)
fetch = +refs/heads/*:refs/remotes/origin/*
[branch "master"]
remote = origin
merge = refs/heads/master
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。