From 179b4748d016c1aa364763b71d79cbfcd0d1bf81 Mon Sep 17 00:00:00 2001 From: Lu-yeom <82422161+Lu-yeom@users.noreply.github.com> Date: Sun, 18 Apr 2021 19:10:06 +0800 Subject: [PATCH] self-learning by Lu-yeom self-learning by Lu-yeom --- homeworks/week1/hw1.md | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/homeworks/week1/hw1.md b/homeworks/week1/hw1.md index 9d71338..a51c864 100644 --- a/homeworks/week1/hw1.md +++ b/homeworks/week1/hw1.md @@ -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"