2019鐵人賽
基本上會依照這個工作流程來操作 git
找一個打算使用 git 的資料夾
git init
這個指令會建立一個名為 .git 的子資料夾。
到現在這步驟,Repo 預設沒有追蹤任何檔案。
git status 指令是用來偵測哪些檔案處在什麼樣的狀態下。
git status
要追蹤一個新的檔案,可以使用 git add 指令。
git add <fileName>
git commit -m "提交訊息"
git log
reference from https://git-scm.com/book/en/v2/Git-Basics-Getting-a-Git-Repository