git使用ssh方式连接Github远程仓库

配置ssh前,需要在远程仓库上先创建一个仓库。

操作教程

1. 使用Git Bash本地生成密钥

ssh-keygen -t ed25519 -C "your_email@example.com"

# 旧版系统配置(之后,连续三个回车即可生成密钥)
ssh-keygen -t rsa -b 4096 -C "your_email@example.com"

查看密钥

ls -a ~/.ssh

2. 远程仓库添加SSH公钥

  • 复制本地生成的密钥公钥id_ed25519.pub

    切换到密钥生成的目录下,我的在~/.ssh/,之后可以使用cat命令进行查看复制

  • 远程仓库添加SSH公钥

    如下图所示,添加SSH公钥到Github上

3. 使用SSH连接远程仓库

找到你要操作的仓库,点击SSH,复制SSH的指令

git clone git远程仓库地址

参考资料

https://docs.github.com/cn/github/authenticating-to-github/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent

这些信息可能会帮助到你: 关于我们 | 饿了么返钱 | 捐赠支持

文章名称:git使用ssh方式连接Github远程仓库
文章链接:https://www.bysjb.cn/git-ssh.html
THE END
分享
二维码
打赏
< <上一篇
下一篇>>