赞
踩
配置用户名与邮箱,这里--global
表示为全局设置。
git config --global user.name "yourname"
git config --global user.email youremail@qq.com
打开Pycharm,进入settings-Version Control-Git,路径为你的Git安装路径。
打开settings-Version Control-Github,添加账号
这里有账号密码与Token两种登陆方式,我选择了Token登录.
登录Github进入设置
点击 Developer settings-Personal access,如果找不到传送门
界面如下,如果已经配置过了点击Generate new token即可
VCS-Import into Version Control-Share Project on GitHub创建仓库
命名创建的仓库,并设置是否为公开,可添加适当描述
选择Add
即可添加至本地仓库
点击右下角的master
,选择Push...
即可推送至远程仓库。
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
git config http.sslVerify "false"
ipconfig/flushdns
原文链接
https://blog.csdn.net/natahew/article/details/81387885
此类操作其他解决方案,参考
https://github.com/521xueweihan/GitHub520
选取其中一条报错如下:
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
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。