更换 git 远程仓库链接,在 GitLab 中重新配置 SSH key

修改仓库地址

1、git 指令修改

1
git remote set-url origin [url]

或 先删再加

1
2
git remote rm origin
git remote add origin [url]

2、直接修改 git 仓库中的 .git 文件中的 config 文件

在新的仓库中 配置 SSH key (使用 SSH 时需要)

简书教程 GitLab 中配置 SSH key

把本机电脑中的 SSH_KEY ( id_rsa.pub )加到 GitLab 的Setting-SSH Keys配置中


编辑文章✏