前言

git使用https协议,每次pull,push都要输入密码,使用git协议,使用ssh秘钥,可以省去每次输密码

大概需要三个步骤:

一、本地生成密钥对;

二、设置github上的公钥;

三、修改git的remote url为git协议。

生成秘钥

$ ssh-keygen -t rsa -C “your_email@youremail.com“
 
Creates a new ssh key using the provided email # Generating public/private rsa key pair.
 
Enter file in which to save the key (/home/you/.ssh/id_rsa):
 
直接Enter就行。然后,会提示你输入密码,如下(建议输一个,安全一点,当然不输也行):
 
Enter passphrase (empty for no passphrase): [Type a passphrase]
 
Enter same passphrase again: [Type passphrase again]

然后会提示你,你的密钥在哪

Your identification has been saved in /home/you/.ssh/id_rsa.
 
Your public key has been saved in /home/you/.ssh/id_rsa.pub.
 
The key fingerprint is: # 01:0f:f4:3b:ca:85:d6:17:a1:7d:f0:68:9d:f0:a2:db your_email@youremail.com
]

添加公钥到你的github帐户

1.复制密钥

$ cat ~/.ssh/id_rsa.pub

如果你是windows用户,那么请在你的用户目录下,找到.ssh文件夹然后打开id_rsa.pub直接复制就可以了

2、登陆你的github帐户。然后 Account Settings -> 左栏点击 SSH Keys -> 点击 Add SSH key

3、然后你复制上面的公钥内容,粘贴进“Key”文本域内。 title域,你随便填一个都行。

4、完了,点击 Add key。

这样,就OK了。然后,验证下这个key是不是正常工作。

$ ssh -T git@github.com

会提示你:

Hi username! You’ve successfully authenticated, but GitHub does not # provide shell access.

Ok,到这里你的Git秘钥配置成功

最后修改:2021 年 12 月 30 日 12 : 56 PM
如果觉得我的文章对你有用,请随意赞赏
  • 本文作者:雨落倾城
  • 本文链接:https://yuluoqc.xyz/2020/03/07/15.html
  • 版权声明:本博客所有文章除特别声明外,均默认采用 CC BY-NC-SA 4.0 许可协议。
  • # 商业转载请联系作者获得授权,非商业转载请注明出处
    # 协议(License):署名-非商业性使用-相同方式共享 4.0 国际 (CC BY-NC-SA 4.0)
    # For commercial use, please contact the author for authorization. For non-commercial use, please indicate the source.