关键模块代码参考模板(根据个人理解编写)
.config文件中
Host github.com / HostName github.com / User ls-github123 / IdentityFile "D:/ssh-key/github_ssh"
使用 SSH 连接 如果 HTTPS 连接问题无法解决,可以尝试使用 SSH 连接 GitHub 仓库。首先,你需要生成一个 SSH 密钥对,并将公钥添加到 GitHub 账户
1.生成密钥对命令: ssh-keygen -t rsa -b 4096 -C "[email protected]"
(-t rsa 指定密钥类型为 RSA \ -b 4096 指定密钥长度为 4096 位 \ -C "[email protected]" 添加注释(通常是你的电子邮件地址))
2.查看公钥的 SHA256 指纹: ssh-keygen -lf ~/.ssh/id_rsa.pub -E sha256