git branch <name>
git checkout <name>
git checkout -b <name>
git branch
git merge <name>
Fast-forward:快进模式。直接让指针从当前分支指向指定分支
git branch -d <name>
参考: 廖雪峰的Git教程
Git:六、分支管理(指针操作)
原文:https://www.cnblogs.com/ZhengWH/p/10375701.html