因为某些原因,你的仓库IP或网址编了,不得不修改远程仓库的地址。
方法一:
删除本地仓库,重新从远程拉取仓库。这样虽然简单,但是耗时间。
方法二:命令行,修改 https 协议地址
假设,本地仓库关联了 gitee 远程仓库,执行下面命令
git remote -v
显示:
origin http://gitee.com/aabb/repo.git (fetch)
origin http://gitee.com/aabb/repo.git (push)
这时,发现,pull 或 push 时,每次都要输入用户名、密码。
怎样才能不用每次输入用户名呢?执行下面命令:
1.把用户名,写到链接里:
git remote set-url origin http://[email protected]/aabb/repo.git
origin 是远程仓库的默认名字,根据上面 执行 "git remote -v" 命令看到名字来替换
usernaem 你用用户名
2.把用户名、密码都写到链接里:
很方便,但是这样不够安全(如果想免密,建议还是用公私钥的方式加密)
git remote set-url origin http://usernaem:[email protected]/aabb/repo.git
usernaem 你用用户名
password 你的密码
方法三:命令行,修改 git 协议地址
git 协议的连接查看、修改和方法二类似,不废话了。
方法四:把账号密码存储在一个文本里,账号密码是明文,有点不太安全。
看这篇:https://www.cnblogs.com/wutou/p/17585668.html
参考:
https://blog.csdn.net/CoderSharry/article/details/131531402