GitHub使用SHH

一. ls -al ~/.ssh 或者查看 ~lidaoyuan/.ssh/ 目录是否存在
二. 如果不存在,生成SSH key

  1. ssh-keygen -t rsa -C "[email protected]"
    其中 [email protected] 为你在 GitHub 注册时的邮箱,
    不输入邮箱,只 ssh-keygen 也可以
  2. 中间会提示输入 passphrase .
    3.vim ~/.ssh/id_rsa.pub 可查看公钥
    4.pbcopy < ~/.ssh/id_rsa.pub 可以将公钥复制到剪切板

三、添加 key 到 SSH
ssh-add ~/.ssh/id_rsa
此时会要求输入 passphrase,输入步骤二中填的 passphrase

四. 将复制的ssh key 添加到github中
setting >> SSH and GPG keys

你可能感兴趣的:(GitHub使用SHH)