大家好,又见面了,我是你们的朋友全栈君。如果您正在找激活码,请点击查看最新教程,关注关注公众号 “全栈程序员社区” 获取激活教程,可能之前旧版本教程已经失效.最新Idea2022.1教程亲测有效,一键激活。
Jetbrains全系列IDE使用 1年只要46元 售后保障 童叟无欺
步骤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
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/175404.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...