PyCharm配置Git版本控制

PyCharm配置Git版本控制步骤1:配置git配置用户名与邮箱,这里global表示为全局设置。gitconfigglobaluser.name”yourname”gitconfigglobaluser.emailyouremail@qq.com打开Pycharm,进入settings-VersionControl-Git,路径为你的Git安装路径。[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传步骤2:利用Token连接Pycharm与Github账号打开settin

步骤1:配置git

配置用户名与邮箱,这里--global表示为全局设置。

git config --global user.name "yourname"
git config --global user.email youremail@qq.com

打开Pycharm,进入settings-Version Control-Git,路径为你的Git安装路径。
在这里插入图片描述

步骤2:利用Token连接Pycharm与Github账号

打开settings-Version Control-Github,添加账号
在这里插入图片描述

这里有账号密码Token两种登陆方式,我选择了Token登录.

在这里插入图片描述
登录Github进入设置
在这里插入图片描述

点击 Developer settings-Personal access,如果找不到传送门
在这里插入图片描述
界面如下,如果已经配置过了点击Generate new token即可
在这里插入图片描述

步骤3:上传项目至Github

VCS-Import into Version Control-Share Project on GitHub创建仓库

在这里插入图片描述
命名创建的仓库,并设置是否为公开,可添加适当描述
在这里插入图片描述

选择Add即可添加至本地仓库
在这里插入图片描述

点击右下角的master,选择Push...即可推送至远程仓库。

在这里插入图片描述

报错处理

报错一:Failed to connect to github.com port 443: Timed out

Step1:打开ipaddress.com,查询如下两个域名,并分别记录下其对应的ip:

1、github.com

2、github.global.ssl.fastly.net

结果按照如下格式添加到C:\Windows\System32\drivers\etc\hosts末尾:

140.82.114.4                  github.com
199.232.69.194                github.global.ssl.fastly.net
Step2:打开Git,输入如下指令:
git config http.sslVerify "false"
Step3:Win键+R,输入cmd,打开终端,输入:
ipconfig/flushdns

原文链接
https://blog.csdn.net/natahew/article/details/81387885

此类操作其他解决方案,参考
https://github.com/521xueweihan/GitHub520

报错二:Connection was reset

选取其中一条报错如下:

Enumerating objects: 35, done. Delta compression using up to 8 threads Total 26 (delta 12), reused 0 (delta 0) the remote end hung up unexpectedly the remote end hung up unexpectedly RPC failed; curl 56 Recv failure: Connection was reset

打开Git输入如下两行指令:

## 设置http缓存为1000M(大小可以根据需要自行更改)
git config --global http.postBuffer 1048576000 
## 设置https缓存为1000M
git config --global https.postBuffer 1048576000

今天的文章PyCharm配置Git版本控制分享到此就结束了,感谢您的阅读。

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/11927.html

(0)
编程小号编程小号

相关推荐

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注