学习git的分支功能 主要的命令: git branch <分支名> 创建分支 git checkout <分支名> 切换分支 git merge <分支名> 合并该分支 git branch -D <分支名> 删除分支 git checkout -b <分支名> 第1、2两个步骤合起来