1. 程式人生 > >Git上傳到檔案到GitHub

Git上傳到檔案到GitHub

github建立倉庫

 

獲取GitHub上的倉庫的URL

 

用git和github互動

  • 在本地電腦上建立一個資料夾並且進入

  • 右鍵進入Git Bush

 

git clone [email protected]:CRDBean/GitDemo.git

  • 此時github上的檔案就下載到本地了。如下圖所示

 

  • 在檔案裡面建立一個文字111,如下圖所示

 

  • 在終端上進入GitDemo資料夾下

 

  • 新增檔案
git add *

  • 提交檔案
git commit -m "first commit"

  • push 倉庫
git push [email protected]:CRDBean/GitDemo.git

 

  • 上傳成功