原因:git clone 项目时,使用 的https而不是ssh
解决:将https改成clone
1.查看clone 地址:
git remote -v(若地址是以https开头,就继续执行第2-第5步,否则直接进入第6步)
2.移除https的方式
git remote rm origin
3.添加ssh方式
git remote add origin 这里是ssh方式地址(如下图)
4.查看是否修改成功:
git remote -v(若地址是以git开头就成功了)
5、生成SSH keys命令
ssh-keygen -t rsa -C "这里是你github上的邮箱"
(一直enter,里面有id_rsa.pub保存路径,第6步用到)
6.copy ssh
找到保存路径,打开id_rsa.pub即是
eg:
我的window:
cd c://users/fusilin/.ssh
type id_rsa.pub