Date:2018.11.09
- 删除 / 查看分支
// remove local loacal branch
$ git branch -d <本地分支名>
// or
$ git branch -D <本地分支名>
// remove local remote branch
$ git branch -r -d <远程分支名>
// or
$ git branch -r -D <远程分支名>
// remove remote remote branch
$ git push origin -d <远程分支名>
// or
$ git push origin --delete <远程分支名>
// 查看本地分支
$ git branch
// 查看远程分支
$ git branch -r
// 查看所有分支
$ git branch -a