码云出现[email protected]: Permission denied (publickey)window下 解决方法

PS:由于电脑出问题,重装导致所有配置都得再来一遍,可难受了…

其实问题解决方法主要是重新生成公钥即可:

win+R 弹出命令窗口,复制如下命令后三次回车即可生成公钥

https://gitee.com/help/articles/4181#article-header0

ssh-keygen -t rsa -C "[email protected]"  
//用户名,也就是邮箱

生成公钥的位置如下:

码云出现git@gitee.com: Permission denied (publickey)window下 解决方法_第1张图片
然后右键-》记事本打开,复制里面的内容到https://gitee.com/profile/sshkeys 即可。


提示:

1.第一次本地连接码云:

win+R弹出命令窗口:

git config --global user.email "[email protected]"

git config --global user.name “Your Name”

2.文件夹首次链接使用-》》对目标仓库克隆,输入

git clone https://gitee.com/码云名字/项目名称.git  

3.新本地存储库(首次链接不需要,但是以后使用需要先跟新本地,后同步码云)

git pull 项目名 master --allow-unrelated-histories

你可能感兴趣的:(Git)