1,先從GitHub網頁上創建一個數據倉庫git
2,安裝git 下載地址:https://www.git-scm.com/download/wingithub
3,找到本地要上傳的項目目錄,右鍵點擊Git Bash Here命令行
4,在命令行中,輸入「git init」,使文件加入git管理3d
5,輸入:git add .(注意不要忘記 . ) 將文件夾所有內容添加到gitblog
6,輸入:git commit -m "first commit" (「git commit -m "提交信息"」)rem
7,.輸入:git remote add origin https://github.com/nlc1234/JavaWeb.git (git remote add origin 你本身的https地址),鏈接你的guthub倉庫it
8,輸入「git push -u origin master」,上傳項目到Github。這裏會要求輸入Github的帳號密碼,按要求輸入就能夠ast
9,成功下載