<p>第1步:检查SSH密钥虽然我们建议HTTPS的,因为它通常更容易设置,您还可以使用SSH密钥来建立你的电脑和GitHub上之间的安全连接。以下步骤将指导您完成生成SSH密钥,然后添加公钥到您的GitHub上的帐户。</p><p>cd~/.ssh</p><p>ls</p><p>#Liststhefilesinyour.sshdirectory检查清单,看看是否有一个命名为文件的目录的id_rsa.pub和id_dsa.pub中。如果你没有任何这些文件转到步骤2。否则,你已经有一个现有的密钥对,你可以直接跳到第3步。第2步:生成一个新的SSH密钥要生成新的SSH密钥,输入下面的代码。我们希望默认设置,所以当要求输入要保存的密钥文件,只需按Enter键。</p><p>ssh-keygen-trsa-C"your_email@example.com"</p><p>#Createsanewsshkey,usingtheprovidedemailasalabel</p><p>#Generatingpublic/privatersakeypair.</p><p>#Enterfileinwhichtosavethekey(/c/Users/you/.ssh/id_rsa):[Pressenter]</p><p>ssh-addid_rsa现在,你需要输入一个密码。</p><p>Enterpassphrase(emptyfornopassphrase):[Typeapassphrase]</p><p>#Entersamepassphraseagain:[Typepassphraseagain]这应该给你的东西是这样的:</p><p>Youridentificationhasbeensavedin/c/Users/you/.ssh/id_rsa.</p><p>#Yourpublickeyhasbeensavedin/c/Users/you/.ssh/id_rsa.pub.</p><p>#Thekeyfingerprintis:</p><p>#01:0f:f4:3b:ca:85:d6:17:a1:7d:f0:68:9d:f0:a2:dbyour_email@example.com第3步:添加您的SSH密钥到GitHub上运行下面的代码到密钥复制到剪贴板。</p><p>clip<~/.ssh/id_rsa.pub</p><p>#Copiesthecontentsoftheid_rsa.pubfiletoyourclipb劳务派遣系统软件rd步骤4:测试所有的东西为了确保一切工作现在你的SSH到GitHub上。当你这样做,你将被要求使用密码,这对于这个目的是先前创建的口令来验证此操作。不要更改git@github.com一部分。这应该在那里。</p><p>ssh-Tgit@github.com</p><p>#Attemptstosshtogithub您可能会看到这样的警告:</p><p>#Theauthenticityofhost'github.com(207.97.227.239)'can'tbeestablished.</p><p>RSAkeyfingerprintis16:27:ac:a5:76:28:2d:36:63:1b:56:4d:eb:df:a6:48.</p><p>#Areyousureyouwanttocontinueconnecting(yes/no)?不要担心,这是应该发生的。验证指纹的一个在这里比赛,然后键入“是”。</p><p>#Hiusername!You'vesuccessfullyauthenticated,butGitHubdoesnot</p><p>provideshellaccess.如果用户名是正确的,你已经成功地建立了你的SSH密钥。不要担心shell访问的事情,你不希望出现这种情况呢。</p>