查看是否有全局配置,如果有则先清除
● 查看全局配置 git config --list
● 删除全局配置 git config edit
- 删除文件内容
- 按Esc退出编辑状态
- 输入:wq保存退出
● 再次查看全局配置
生成密钥(一定要使用管理员权限的cmd或者powershell)
● 在管理员权限的cmd或powershell运行命令
● cd 到.ssh文件夹
● 生成gitlab秘钥:
○ ssh-keygen -t rsa -C “办公邮箱”
○ 点击回车会提示如下,Enter file in which to save the key (/c/Users/honey/.ssh/id_rsa): id_rsa_gitlab
○ 一直回车,不要输入任何东西
● 生成gitee密钥:
○ ssh-keygen -t rsa -C “gitee邮箱”
○ 点击回车会提示如下,Enter file in which to save the key (/c/Users/honey/.ssh/id_rsa): id_rsa_gitee
○ 一直回车,不要输入任何东西
● 检查.ssh文件夹下是否有文件
添加公钥(.pub)到gitlab和gitee
● 打开gitlab账号,添加ssh公钥
●