Git 初始化

git init

加入版本包

git add -all
git add -A
git add .

提交版本

git commit -m "commit text"

查看版本狀態

git status

查看版本提交紀錄

git log

新增遠端儲存庫

git remote add origin <repo_url>

推上遠端儲存庫

git push -u origin master

工作目錄檔案還原

索引區檔案還原