zzly00 / mentor-program-2nd-blog

2 stars 0 forks source link

[筆記] git交作業 & 基礎語法 #2

Open zzly00 opened 6 years ago

zzly00 commented 6 years ago

交作業流程:

  1. 先開一個branch git branch {new1}
  2. 從master移到新的branch git checkout {new1}
  3. 寫完作業後,檔案加到branch中 git add . git commit -m ""
  4. push到github中 git push git push --set-upstream origin {new1}
  5. 在github中點擊pull request,並選擇從哪個分支merge到哪個分支
  6. 確認是否merge(Huli會確認後點擊)
  7. 從github中pull下來到master git pull origin master
  8. 刪除本機中的作業分支 git branch -d {new1}

額外的git語法