Github SSH Key
Github
上如果想用 git@github.com
的ssh方式,需要在GitHub的Setting里配上客户机的SSHKey的。
SSH Key - Win10 生成方式
检查已有SSH Key
1 | cat ~/.ssh/id_rsa.pub |
得到的形如
ssh-rsa …………….
就是SSH Key了,将其添加到GitHub-Setting-SSH&GPGKey里即可。
生成SSH Key
1 | ssh-keygen -t rsa -C "some comment" |
一路回车即可,生成完成后查看:
1 | cat ~\.ssh\id_rsa.pub |