1. 程式人生 > >github 上傳步驟

github 上傳步驟

lease pos 信息 git add nag push HA 上傳 -c

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 上傳步驟