【github ssh公钥】1.添加 2.设置下user.email和user.name提交时有值
收到如下类型的报错:Warning: Permanently added the RSA host key for IPaddress '192.30.253.113' to the list of known hosts.Permission denied (publickey). fatal: Could not readfrom remote repository. Ple...
·
1)进入设置界面
2)在win上生成如下(mac下也一样):
Administrator@Administrator MINGW64 ~/Desktop
// step1:先生成公钥(这里的邮箱没有意义仅仅是标识,任意名字都可以)
$ ssh-keygen -t rsa -C "1072772483@qq.com"
Generating public/private rsa key pair.
Enter file in which to save the key (/c/Users/Administrator/.ssh/id_rsa):
/c/Users/Administrator/.ssh/id_rsa already exists.
Overwrite (y/n)? y
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
Your identification has been saved in /c/Users/Administrator/.ssh/id_rsa.
// step2:注意生成的公钥的位置
Your public key has been saved in /c/Users/Administrator/.ssh/id_rsa.pub.
The key fingerprint is:
SHA256:3Gc8npomkGzLDOV43EFO9LNjyRK5rvqLzqWHV+syFEs 1072772483@qq.com
The key's randomart image is:
+---[RSA 2048]----+
| .. |
| oo |
| +o o |
| E.o= = |
| B =S.B = |
| o @.oo = o |
| O.+.. o |
| ..+O.o .o |
| .*=+=.oo |
+----[SHA256]-----+
// step3:查看公钥,在github的ssh key中起一个对应的名字,然后将内容粘贴进去即可。
cat /c/Users/Administrator/.ssh/id_rsa.pub
其中第3步如下:
将 生成的公钥添加下(标题可以任意取,而不一定就是邮箱,如:xxPC,让自己明白这个是哪个电脑上 )
3)接下来就可以用ssh的方式克隆了
git clone git@gitee.com:jianan/xx.git
4)查询下变量,防止提交时没有名字
// 查下所有全局配置
git config --global --list
// 设置下提交人的信息(在日志中就可以看到)
git config --global --add user.email 1072772483@qq.com
git config --global --add user.name jianan
// 删除某个配置
git config --global --unset user.email
这样子在提交代码时,就是自己本地设置的名字和邮箱
Author: jianan <1072772483@qq.com>
Date: Wed Mar 2 18:45:51 2022 +0800
开始阅读源码
开放原子开发者工作坊旨在鼓励更多人参与开源活动,与志同道合的开发者们相互交流开发经验、分享开发心得、获取前沿技术趋势。工作坊有多种形式的开发者活动,如meetup、训练营等,主打技术交流,干货满满,真诚地邀请各位开发者共同参与!
更多推荐
已为社区贡献1条内容
所有评论(0)