文章目录
- 0.安装 Git
- 1.注册 GitHub 账号
- 2.配置 Git 的用户名和邮箱
- 3.为本机生成 SSH 密钥对
- 4.将公钥拷贝到 GitHub 上
- 5.测试
0.安装 Git
Git 官网链接:https://git-scm.com/
Git 官网下载链接:https://git-scm.com/downloads
1.注册 GitHub 账号
GitHub 官网链接:https://github.com/
2.配置 Git 的用户名和邮箱
因为 Git 是分布式版本控制系统,所以需要填写用户名和邮箱作为一个标识。
建议 Git 的用户名和邮箱与 GitHub 的用户名和邮箱保持一致,具体原因参考下面两篇文章:
- https://blog.csdn.net/sinat_36710456/article/details/80189687
- https://www.jianshu.com/p/f3020c04d966
git config --global user.name "你的用户名"
git config --global user.email "你的邮箱"
配置好的 Git 的用户名和邮箱存储在 C:\Users\账户名
目录下的 .gitconfig
文件中,如下图所示。
3.为本机生成 SSH 密钥对
执行如下命令产生 SSH 密钥对:
ssh-keygen -t rsa -C "本机标识"
上面命令中的 -C
只是给产生的密钥对加了一个注释,建议填写跟这台机器相关的内容,具体原因参考这篇文章:https://www.jianshu.com/p/f3020c04d966
生成的 SSH 密钥对存储在 C:\Users\账户名\.ssh
目录下,如下图所示:
接着将 id_rsa.pub
公钥里的内容复制到剪贴板,可以执行如下命令去复制,也可以打开 C:\Users\账户名\.ssh\id_rsa.pub
文件去复制:
clip < ~/.ssh/id_rsa.pub
4.将公钥拷贝到 GitHub 上
5.测试
执行如下命令,初次设置需要输入 yes
,出现 successfully 表示成功,如下图所示。
ssh -T git@github.com