登录 主页

git branch--删除分支

2023-08-14 08:26PM

删除分支命令:

git branch -d (branchname)

例如我们要删除 testing 分支:

$ git branch
* master
  testing
$ git branch -d testing
Deleted branch testing (was 85fc7e7).
$ git branch
* master

返回>>

登录

请登录后再发表评论。

评论列表:

目前还没有人发表评论