当前位置:网站首页>gerrit 配置SSH Key和账号、邮箱信息

gerrit 配置SSH Key和账号、邮箱信息

2022-08-11 05:25:00 Emily_rong_2021

配置SSH Key和账号、邮箱信息

        我们选择使用SSH方式来管理代码,由于本地Git仓库和GitHub仓库之间的传输是通过SSH加密的,所以必须要让github仓库认证你SSH key,在此之前,必须要生成SSH key。

任意位置右键—点击“Git Bash Here”,输入:
ssh-keygen -t rsa -C '[email protected]'

其中-t指定密钥类型,这里设置rsa即可,-c是密钥的注释,这里设置成邮箱方便分辨;

一路回车即可;

 

  • 配置用户名和邮箱:
  1. git  config  --global  user.name  "1410475107"
  2. git  config  --global  user.email  "[email protected]"

 

 

The email is only optional field to identify the key.邮箱仅仅是识别用的key

When you create the ssh you type (for example):当你创建ssh的时候
ssh-keygen -t rsa -C “any comment can be here”

-t = The type of the key to generate 密钥的类型
-C = comment to identify the key  用于识别这个密钥的注释
So the Comment is for you only and you can put anything inside.
Many sites and software are using this comment as the key name.
所以这个注释你可以输入任何内容,很多网站和软件用这个注释作为密钥的名字
 

ssh-keygen的-C后面的邮箱有什么用?_BaldWinf的博客-CSDN博客

配置SSH Key和账号、邮箱信息_勋勋勋勋小勋勋的博客-CSDN博客_ssh 邮箱

原网站

版权声明
本文为[Emily_rong_2021]所创,转载请带上原文链接,感谢
https://blog.csdn.net/Emily_rong_2021/article/details/126180192