如何删除git分支

git

<1> 删除本地分支

使用命令 git branch -a 查看所有分支,以 remotes 开头的是远程分支;

例如要删除本地分支 test ,使用如下命令

先切到非 test 分支,

git checkout master

删除 test 分支 

git branch -D test

<2> 删除远端分支

git push origin –delete test

origin为远程仓库的名称

test为要删除的分支

删除远程分支不影响本地分支

删除分支要谨慎操作

 

 

 

 

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注