# 分支管理 ## 删除本地分支 `git branch -D ${branch_name}` ## 删除远程分支 `git push self -d ${branch_name}` ## 拉取指定分支 `git clone -b ${url}`