# sudo apt install git // 安裝 git
# cd project_name
# git init // 將 project_name 加入版本控制
# git add . // 將 project_name 加入至暫存區
# git config --global user.name "your_name" // 設定提交者 [姓名]
# git config --global user.email "your_email" // 設定提交者 [E-Mail]
# git commit -m "init_name" // 提交至 [儲存庫]
# git log // 查詢儲存庫裡的 [紀錄點]