初始化仓库
添加文件到暂存区
git add <file> ## or 全部添加 git add .
提交文件到本地仓库
<!-- 单行 --> git commit -m <message> <!-- 多行 --> git commit
掌握工作区的状态,是否有文件状态
git status
查看提交历史
git log --oneline --decorate --graph --all
← Git 基础 Git Branch-分支→