Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 16 additions & 1 deletion homeworks/week1/hw1.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,17 @@
## 交作業流程

1.先fork專案
2.建立branch
git branch "hw1"
3.切換新的branch
git checkout "hw1"
4.編輯完內容後,將新檔案加入
git add .
5.為版本增加敘述(例如:done)
git commit -m "done"
6.push上github repository
git push
7.點擊pull requests合併
8.下載最新的branch
git pull origin master
9.刪掉自己的branch
git branch -d "hw1"