码迷,mamicode.com
首页 > Web开发 > 详细

github 上传步骤

时间:2018-05-23 14:20:04      阅读:290      评论:0      收藏:0      [点我收藏+]

标签:http   comm   ref   win   管理器   push   安装   pre   技术分享   

1.在命令行中,输入“git init”,使Test文件夹加入git管理;
2.输入“git add .”(不要漏了“.”),将Test文件夹全部内容添加到git。
3.输入“git commit -m "first commit"”(“git commit -m "提交信息"”)
4.输入“git remote add origin https://github.com/userName/File.git”(git remote add origin 你自己的https地址),连接你的guthub仓库。
5.输入“git push -u origin master”,上传项目到Github。这里会要求输入Github的账号密码,按要求输入就可以。

在第4步  连接GitHub时遇到 HttpRequestException encountered问题

解决:Github 禁用了TLS v1.0 and v1.1,必须更新Windows的git凭证管理器 
通过此网址https://github.com/Microsoft/Git-Credential-Manager-for-Windows/releases/

技术分享图片

下载之后安装重启git窗口 
$ git remote add origin https://github.com/userName/File.git 
userName是你的用户名File是你自己建的 repository名称 
$ git remote rm origin 

就可以了!!

 

github 上传步骤

标签:http   comm   ref   win   管理器   push   安装   pre   技术分享   

原文地址:https://www.cnblogs.com/jiangkunkun/p/9076519.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!