Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 791 Bytes

commit.md

File metadata and controls

20 lines (15 loc) · 791 Bytes

練習題:新增兩個送交紀錄

  1. 透過 mkdir commit 指令,新增一個資料夾叫 commit
  2. 透過 git init 指令,進行專案初始化。
  3. 透過 echo "Hello World" >> README.md 指令,在資料夾中,新增一個檔案叫 README.md
  4. 透過 git add . 指令,將所有更變加入 index 中
  5. 透過 git commit -m 'init' 指令,將更變送交給 git
  6. 透過 echo 123 >> README.md 指令,編輯 README.md
  7. 透過 git add . 指令,將所有更變加入 index 中
  8. 透過 git commit -m 'update readme' 指令,將更變送交給 git
  9. 完成第一個版本控制範例