我运行git branch -a

* master
  remotes/origin/test
  remotes/origin/master

我想删除我的远程分支

我试过了

git push origin --delete remotes/origin/test

我得到了

错误:无法删除'remotes/origin/test':远程引用不 存在

怎么会不存在呢?

我做了一个git分支-a,我看到它列出来了。

我错过什么了吗?


当前回答

我遵循解决方案poke与一个小的调整在最后。我的步骤如下 - git获取-修剪; - git分支-打印如下 主 分支 remotes/origin/HEAD -> origin/master 遥控器/产地/主人 remotes/origin/branch(要删除的远程分支) - git push origin——删除分支。 在这里,要移除的分支没有命名为remotes/origin/branch,而是简单地命名为branch。分支被移除。

其他回答

对我来说,这是有效的$▶git branch -D -r origin/mybranch

细节

$ ▶ git 分支 -a |格雷普·米布兰奇 远程/源/我的分支

$ ▶ git 分支 -r |格雷普·米布兰奇 原产地/我的分支

$▶git分支 开发 *功能/用于

▶git push origin——删除mybranch 错误:无法删除'mybranch': remote ref不存在 错误:无法将一些引用推到'git@10.102.100.38:config/myrepo.git'

▶git branch -D -r origin/mybranch 删除远程分支来源/mybranch (was 62c7421)。

$ ▶ git 分支 -a |格雷普·米布兰奇

$ ▶ git 分支 -r |格雷普·米布兰奇

对于windows

git branch --remotes| %{ $_.Trim().Split("/")[1] }| ?{ $_ -ne 'master' } | | ?{ $_ -ne 'otherBranch' } | %{ git push origin --delete $_ }

Git branch -a会列出本地的分支,而不是远程的分支。

和错误error: unable to delete 'remotes/origin/test': remote ref does not exist意味着你的远程中没有以该名称命名的分支,但分支在你的本地中存在。

获取远程分支的列表

git fetch # synchronize with the server
git branch --remote # list remote branches

你应该得到一个远程分支的列表:

origin/HEAD -> origin/master
origin/develop
origin/master
origin/deleteme

现在,我们可以删除分支:

git push origin --delete deleteme

这应该会有帮助:

git获取 git push origin——delete branchName