首页 > Web开发 > 详细

fatal: HttpRequestException encountered

时间:2019-02-13 16:34:34      阅读:243      评论:0      收藏:0      [点我收藏+]

技术分享图片

由于Github 禁用了TLS v1.0 and v1.1,须更新Windows的git凭证管理器。

https://github.com/Microsoft/Git-Credential-Manager-for-Windows/releases/tag/v1.14.0

点击下载安装 GCMW-1.14.0.exe ,问题就解决了。

 

附加将本地项目上传到Github的流程命令

1、选择要上传的项目然后右击选择Git Bash Here

技术分享图片

 

2、在命令行中输入git init把这个文件夹变成Git可管理的仓库

技术分享图片

3、输入 git add . (注意这个".",是有空格的,"."代表这个文件夹下的目录全部都提交。也可以通过 "git add 文件名"  把指定的文件添加到缓存区

技术分享图片

4、输入 git commit -m "这里面写你的注释" ,把文件提交的本地仓库

技术分享图片

5、输入 git remote add origin https://自己的仓库url地址 , 将本地的仓库关联到github上,

技术分享图片

仓库url地址如图:

技术分享图片

6、输入  git push -u origin master ,上传到github仓库。

技术分享图片

 

fatal: HttpRequestException encountered

原文:https://www.cnblogs.com/formybestlife/p/10370351.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!