git branch -r
git branch
# 拉取远程某个分支,支持重命名 git checkout -b 本地分支名称 origin/远程分支名称
git branch -d 本地分支名称 # 强制删除 git branch -D 本地分支名称
git push -d origin/远程分支名称