git log
git diff
--------------- 创建 feature-A 分支
git branch
—— 显示分支一览表
git checkout -b feature-A # 创建名为 feature-A 的分支 等价于下方两条命令
## 创建 feature-A 分支,并将当前分支切换为 feature-A 分支
git branch feature-A
git checkout feature-A
--------- 创建 fix-C 分支
git merge
—— 合并分支
git log --graph
—— 以图表形式查看分支
git reset
—— 回溯历史版本
------ 创建 fix-B 分支