- 在你的電腦上建立一個資料夾
- 點開資料夾後, 按滑鼠右鍵選擇 git bash
解釋 | 指令 |
---|---|
將github上的專案與你的資料夾連接 | git clone https://github.com/ytchao0234/GeeGeeWebVersion.git . |
切換分支 | git checkout 你的分支 (frontEnd backEnd) |
載入目前專案的最新進度 | git pull origin 你的分支 (frontEnd backEnd) |
將你資料夾中所有資料更新到github專案上 | git add . |
git commit -m "本次更新內容紀錄(ex.update README.md)" | |
git push origin 你的分支 (frontEnd backEnd) |