1.本地安装git软件Git-2.35.1.2-64-bit.exe 官网地址 https://git-scm.com/
2.配置本地git信息
设置用户名和邮箱(与github中保持一致)
git config --global user.email "[email protected]"
git config --global user.name "hacktest"
3.本地生成rsa公钥
ssh-keygen -t rsa -C [email protected]
一直回车
打开生成的id_rsa.pub文件
4.配置github上的接入公钥 SSH and GPG keys
通过New ssh key功能新增接入公钥,公钥内容就是前面打开的id_rsa.pub文件内容,公钥的title可以随便写。
标签:git,rsa,公钥,github,本地,email From: https://www.cnblogs.com/xxffhack/p/16826732.html