问题描述: git push 提交是碰到 git@gitee.com: Permission denied (publickey) 这是因为github/gitee没有设置SSH公钥或公钥失效 1)重新生成ssh ssh-keygen -t rsa -C "1351655382@qq.com" 2) ...
分类:
其他好文 时间:
2021-04-15 12:39:13
阅读次数:
0
SSH部分 操作主机创建密钥 [root@localhost ~]# ssh-keygen [root@localhost ~]# ls .ssh/ id_rsa id_rsa.pub 分发公钥到被监控端 [root@localhost .ssh]# ssh-copy-id -i id_rsa.pu ...
分类:
其他好文 时间:
2021-03-06 15:08:11
阅读次数:
0
参考:https://blog.csdn.net/vbirdbest/article/details/88189753 安装步骤 1. 修改主机名 sudo scutil --set HostName localhost 2. ssh免密登录 具体配置方法: (1)ssh-keygen -t rsa ...
分类:
系统相关 时间:
2021-03-06 14:17:50
阅读次数:
0
测试 输入以下命令 git version返回版本号就表示成功 如 git version 2.20.1 (Apple Git-117) 检测本地是否有ssh cd ~/.ssh 此命令可以进入到.ssh文件目录下ls 此命令显示目录下的所有文件 生成ssh密钥 ssh-keygen -t rsa ...
分类:
系统相关 时间:
2021-02-27 13:01:29
阅读次数:
0
执行 ssh-keygen -t rsa -C "你的邮箱地址" 然后在 cd /root/.ssh/ 目录下会生成三个文件 id_rsa 这是私钥id_rsa.pub 这是公钥known_hosts ...
分类:
系统相关 时间:
2021-02-15 11:58:09
阅读次数:
0
配置多个git账户,以公司和个人为例 1.打开终端输入以下命令 //生成公司ssh-keygen ssh-keygen -t rsa -b 4096 -C "your_email@example.com" //生成个人ssh-keygen ssh-keygen -t rsa -C "your_ema ...
分类:
系统相关 时间:
2021-02-05 10:43:17
阅读次数:
0
通常我们为了读写代码方便,会在IDE里查看和修改代码,每次通过remote ssh登录,频繁的都要输入密码,这个很烦,索性免密登录,以后就可以想连远程即可实现。 废话少说,直接上教程。 ##1.在git bash中配置公私钥 打开git bash # 输入 ssh-keygen -t rsa -b ...
分类:
其他好文 时间:
2021-02-05 10:42:19
阅读次数:
0
ssh公钥生成 ssh-keygen 设置邮箱账号 git config --global user.email "you@example.com" 设置码云昵称 git config --global user.name "Your Name" ...
分类:
其他好文 时间:
2021-01-19 11:59:24
阅读次数:
0
生成ssh公钥认证所需的公钥和私钥文件 [jiaqi.li@localhost ~]$ ssh-keygen -t rsa -b 4096Generating public/private rsa key pair.Enter file in which to save the key (/home ...
分类:
其他好文 时间:
2021-01-11 11:08:35
阅读次数:
0
1.注册gitee账号 2.安装git 配置用户信息 git config --global user.name "your username" 配置用户邮箱信息 git config --global user.email "email.com" 3.进入git bash,输入ssh-keygen ...
分类:
其他好文 时间:
2021-01-06 12:36:18
阅读次数:
0