删除远程分支的尝试失败 :
$ git branch -d remotes/origin/bugfix
error: branch 'remotes/origin/bugfix' not found.
$ git branch -d origin/bugfix
error: branch 'origin/bugfix' not found.
$ git branch -rd origin/bugfix
Deleted remote branch origin/bugfix (was 2a14ef7).
$ git push
Everything up-to-date
$ git pull
From github.com:gituser/gitproject
* [new branch] bugfix -> origin/bugfix
Already up-to-date.
我如何正确删除remotes/origin/bugfix
本地和远程分支?
许多其他答案都会导致错误/警告。git branch -D branch_to_delete
如果未完全合并到some_other_branch
例如。
git checkout some_other_branch
git push origin :branch_to_delete
git branch -d branch_to_delete
如果您删除了远程分支, 不需要远程剪切。 它只用来获取您正在跟踪的仓库中可用的最新的远程 。 我观察到了git fetch
添加遥控器, 而不是删除它们。 这里举例说明何时git remote prune origin
将实际做一些事情:
用户 A 执行上述步骤。 用户 B 将运行以下命令以查看最新的远程分支 :
git fetch
git remote prune origin
git branch -r
如果您有一个标签, 标签名称与遥控器上的分支相同, 这行不通 :
$ git push origin :branch-or-tag-name
error: dst refspec branch-or-tag-name matches more than one.
error: failed to push some refs to 'git@github.com:SomeName/some-repo.git'
在此情况下, 您需要指定要删除分支, 而不是标记 :
git push origin :refs/heads/branch-or-tag-name
类似地, 要删除标签, 而不是您要使用的分支 :
git push origin :refs/tags/branch-or-tag-name