pycharm向github提交代码ssl密钥问题解决方法

前言

SSL certificate problem: unable to get local issuer certificate

这是我在用pycharm向github提交代码遇到的问题,这些操作的前提是你完成了

  1. git的下载
  2. 在git bash here设置用户名,邮箱
#设置用户信息 ,邮箱
   git config --global user.name “yourname”
   git config --global user.email “[email protected]

在这里插入图片描述


解决方法

在git中输入代码,记得回车三次

ssh-keygen -t rsa -C "[email protected]"

pycharm向github提交代码ssl密钥问题解决方法_第1张图片
打开~/.ssh/id_rsa.pub(在Windows中为C:\Users\name.ssh\id_rsa.pub)
在记事本中打开(id_rsa文件也可以)
复制内容,然后在GitHub的SSH和GPG密钥中创建新的SSH密钥,粘贴内容并保存
pycharm向github提交代码ssl密钥问题解决方法_第2张图片
打开github设置
pycharm向github提交代码ssl密钥问题解决方法_第3张图片
如图点击
pycharm向github提交代码ssl密钥问题解决方法_第4张图片
将ssl内容复制到key就好了
pycharm向github提交代码ssl密钥问题解决方法_第5张图片

你可能感兴趣的:(软件下载及其使用,pycharm,github,ssl)