GIT在window是 配置SSHKEY

1、打开你得命令行工具,输入:

 cd ~/.ssh

2、生成密钥GIT在window是 配置SSHKEY_第1张图片

#设置自己的邮箱,随意设置
$ ssh-keygen -t rsa -C "[email protected]"

#输入保存密钥的文件名字
Enter file in which to save the key (/c/Users/dahai/.ssh/id_rsa): wqzbxh

剩下的就是设置密码:写错了所以才出来让我重新输入

Enter passphrase (empty for no passphrase):
Enter same passphrase again:
Passphrases do not match.  Try again.
Enter passphrase (empty for no passphrase):
Enter same passphrase again:

完成之后会 查看一下:GIT在window是 配置SSHKEY_第2张图片取出密钥,在.pub文件内

$ cat wqzbxh.pub


ssh-rsa AAAAB3NzaC1yc2……………………AAADAQABAAA0= [email protected]

复制密钥到githup中(github 的设置中找到SSHKEY)

GIT在window是 配置SSHKEY_第3张图片

然后吧刚才复制的密钥粘贴进去

GIT在window是 配置SSHKEY_第4张图片

现在你得电脑就已经可以和你得这个正常拉取了

GIT在window是 配置SSHKEY_第5张图片

如果你写了邮箱是正确的情况下,git会向你发送一封邮件如;
GIT在window是 配置SSHKEY_第6张图片

你可能感兴趣的:(git)