1 合并分支 git merge # 例 git branch * master 分支1 分支2 git merge 分支1 //将 分支2 合并到 master 分支 2 删除分支 git branch -d [name] # 例 git branch -d 分支2 //删除 分支2