当前位置:网站首页>gerrit configure SSH Key and account, email information
gerrit configure SSH Key and account, email information
2022-08-11 06:34:00 【Emily_rong_2021】
Configure SSH Key and account, email information
We choose to use SSH to manage the code. Since the transmission between the local Git repository and the GitHub repository is encrypted by SSH, you must let the github repository authenticate your SSH key. Before that, you must generate an SSH key.
Right click anywhere - click "Git Bash Here", enter:
ssh-keygen -t rsa -C '[email protected]'
Where -t specifies the key type, you can set rsa here, -c is the comment of the key, here is set to the mailbox for easy identification;
Just press Enter all the way;
- Configure username and email:
- git config --global user.name "1410475107"
- git config --global user.email "[email protected]"
The email is only optional field to identify the key. The email is only the key for identification
When you create the ssh you type (for example): When you create the ssh
ssh-keygen -t rsa -C "any comment can be here"
-t = The type of the key to generate The type of the key
-C = comment to identify the key The comment used to identify the key
So the Comment is for you only and you can putanything inside.
Many sites and software are using this comment as the key name.
So this comment you can enter anything, many sites and software use this comment as the key name.
What is the use of the mailbox behind -C of ssh-keygen?_BaldWinf's Blog - CSDN Blog
边栏推荐
- openlayer中实现截图框截图的功能
- 深度学习Matlab工具箱代码注释
- net6的Web MVC项目实现限流功能
- scanf函数在混合接受数据(%d和%c相连接)时候的方式
- OpenMLDB + Jupyter Notebook: Quickly Build Machine Learning Applications
- Typescript学习日记,typescript从基础到进阶(第一章)
- 【Meetup预告】OpenMLDB+OneFlow:链接特征工程到模型训练,加速机器学习模型开发
- ARM assembly instruction ADR and LDR
- Day 70
- STM32F4-正点原子探索者-SYSTEM文件夹下的delay.c文件内延时函数详解
猜你喜欢
NUC980-开发环境搭建
Wonderful linkage | OpenMLDB Pulsar Connector principle and practical operation
Node 踩坑之80端口被占用
红外线一认识
USB 枚举过程中8 字节标准请求解析
vim 编辑解决中文乱码问题
STM32学习笔记(白话文理解版)—小灯的点亮、闪烁、呼吸
STM32-中断优先级管理NVIC
js 学习进阶(事件高级 pink老师教学笔记)
He Kaiming's new work ViTDET: target detection field, subverting the concept of layered backbone
随机推荐
Use c language to implement tic-tac-toe chess (with source code, you can run it directly)
STM32学习笔记(白话文理解版)—外部IO中断实验
He Kaiming's new work ViTDET: target detection field, subverting the concept of layered backbone
PAT乙级刷题之路
Open Source Machine Learning Database OpenMLDB Contributor Program Fully Launched
Typescript学习日记,typescript从基础到进阶(第一章)
Certificate of SearchGuard configuration
C language implementation guess Numbers (with source code, can be directly run)
2021-09-11 C language variables and memory allocation
第四范式OpenMLDB优化创新论文被国际数据库顶会VLDB录用
端口的作用
ASP.NET MVC 4中实现action的事务功能
STM32F4-正点原子探索者-SYSTEM文件夹下的delay.c文件内延时函数详解
Pinyougou project combat notes
构建面向特征工程的数据生态 ——拥抱开源生态,OpenMLDB全面打通MLOps生态工具链
论文解读:跨模态/多光谱/多模态检测 Cross-Modality Fusion Transformer for Multispectral Object Detection
系统性能及并发数的一些计算公式
SearchGuard configuration
STM32学习笔记(白话文理解版)—USART通信接口
Ubuntu下安装mysql笔记