发布网友 发布时间:2022-04-24 15:43
共2个回答
热心网友 时间:2022-05-15 17:46
下载安装git管理工具
进入项目根目录(含.git文件夹)使用bash运行git命令
> git checkout the_local_branch // 切换到本地分支
> git branch -d the_local_branch // 删除本地分支的所用记录
> git branch -D the_local_branch // 上面执行有问题,需要-D强制删除
> git push origin :the_remote_branch // 删除远程分支
至此该分支的所有记录都被完全删除了
热心网友 时间:2022-05-15 17:47
可以直接删除该分支