git 删除分支

in Git with 0 comment

图片描述...

列出所有的分支

git branch

输出:
- * master
- test

删除分支

git branch -d test

检查分支

git branch

输出:
- * master
Comments are closed.