- Github頁面新建倉庫,輸入名稱(儘量和本地一樣)
- 點選SSH
- 用Git Bash進入本地專案資料夾,按github頁面說明輸入以下內容:
echo "# test" >> README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin git@github.com:yourname/test.git
git push -u origin master
複製程式碼
- 上傳本地檔案
git add 檔案路徑
git commit -m "資訊"
git pull
git push
複製程式碼
重新整理頁面可看到本地檔案已上傳
- 檢視檔案狀態
git status -sb
複製程式碼
- 設定gitignore檔案
建立gitignore檔案
touch .gitignore
git add .gitignore
git commit -m 'ignore'
複製程式碼
設定
在.gitignore檔案中輸入不上傳的資料夾,例如
/node_modules/
/.vscode/
複製程式碼
- 參考: