git生成SSH秘钥

简介: git生成SSH秘钥

一、打开git bash

windows下 开始 -- 搜索框输入

git bash

打开git bash窗口;

二、检查ssh key是否存在

git base窗口中输入指令

ls ~/.ssh

如下显示则为key存在直接转步骤四

三、生成key

ssh-keygen -t rsa -b 2048 -C "任意字符建议邮箱"

依次按回车;

四、查看key

cat ~/.ssh/id_rsa.pub

打开图示文件,查看key

五、linux

#生成
ssh-keygen -t rsa -b 2048 -C "邮箱";
#查看密钥
cat ~/.ssh/id_rsa.pub;

相关文章
|
5月前
|
网络安全 开发工具 git
【git】解决git报错:ssh:connect to host github.com port 22: Connection timed out 亲测有效
【git】解决git报错:ssh:connect to host github.com port 22: Connection timed out 亲测有效
1326 1
|
7月前
|
安全 Shell 网络安全
【Git】TortoiseGit(小乌龟)配置SSH和使用
【Git】TortoiseGit(小乌龟)配置SSH和使用
660 0
|
6月前
|
Linux 网络安全
|
5月前
|
网络安全 开发工具 git
使用git克隆仓库报错:Warning: Permanently added‘github.com’ to the .....(ssh )
所以,你可以安全地忽略这个警告,它不会影响到你使用git克隆仓库。如果你已经成功克隆了仓库,那么一切都在正常工作。如果你在克隆过程中遇到其他问题,那可能需要查看具体的错误信息来解决。
141 0
|
6月前
|
安全 网络安全 开发工具
【GIT】GitHub添加ssh密钥
【GIT】GitHub添加ssh密钥
68 0
|
7月前
|
存储 安全 网络安全
Git 安全远程访问:SSH 密钥对生成、添加和连接步骤解析
SSH(Secure Shell)是一种用于安全远程访问的协议,它提供了加密通信和身份验证机制。在使用 SSH 连接到远程 Git 存储库时,您可以使用 SSH 密钥对来确保安全性。以下是关于如何生成和使用 SSH 密钥对的详细步骤: 生成 SSH 密钥对
485 2
|
7月前
|
存储 网络安全 开发工具
Git的GUI图形化工具&ssh协议&IDEA集成Git
Git的GUI图形化工具&ssh协议&IDEA集成Git
281 0
|
网络安全 安全 开发工具
终端配置ssh秘钥登录
终端配置ssh秘钥登录
|
网络安全 数据安全/隐私保护 Linux