首先登录github,密码忘记了就找回,重置一下。
创建新的repository
用pycharm自带的git工具上传数据
首先会提示你未安装git,就安装一下。
下来,授权pycharm和GitHub的访问。
这时候可以看到自己创建的新repository,clone下来。如果报错10054,则打开git bash,输入“git config --global http.sslVerify "false" ”,把ssl关掉
然后把要上传的文件copy到文件夹,点击add
再commit,此过程要求输入一些comment
最后push,如果出现rpc failed curl 92 HTTP/2 stream 0 was not closed cleanly的错误。
按照 https://blog.csdn.net/ayunnuo/article/details/118418385 这里的方法增加一些buff,因为github的大文件限制是50m。
git config --global http.proxy
git config --global --unset http.proxy
# 修改提交缓存大小为500M,或者更大的数字
git config --global http.postBuffer 524288000
标签:git,http,记录,--,config,global,github,上传 From: https://www.cnblogs.com/marszhw/p/17053247.html