列出分支
** -a **:列出所有的分支(本地和远程)
** -r **:列出远程的分支
** -l **:列出本地的分支
git branch -a
新建分支
git branch -b test
是下面两条命令的缩写
git branch test
git checkout test
提交该分支到远程仓库
git push origin test
合并分支
切换到你要合并到的分支进行下面的操作
git merge test
git push
删除本地分支
如果删除的分支是当前正在编辑的,删除前需切换到其它分支。
git branch -d test
提交删除的分支
git push origin :test