当我运行命令git branch -a
时,我看到一个与不再存在的远程设备相关联的分支列表。例如:
remotes/does-not-exist/branch1
remotes/does-not-exist/branch2
remotes/origin/dev
remotes/origin/feature3
我想从上面的列表中删除与does-not-exist
关联的分支。但是,如果我运行命令git remote prune does-not-exist
,我会得到以下错误
conq: repository does not exist.
fatal: Could not read from remote repository.
如何删除与does-not-exist
关联的分支?我应该删除.git/refs/remotes/
下的文件夹吗?
4条答案
按热度按时间kadbb4591#
我使用GitLab网页将一个分支合并到master。
在我本地的贝壳上,分支仍然存在
删除了本地分支
删除了对远程分支的引用
使用以下reference查找命令
pkwftd7m2#
您应该删除远程,而不是分支。这样,分支也将被删除。
git remote remove does-not-exist
。w46czmvw3#
要删除远程分支,我运行
git push origin --delete <branch>
。因此,在您的情况下,您可以运行以下命令:希望这能帮上忙。
qlvxas9a4#
我也遇到了同样的问题,最终使用
git branch -Dr does-not-exist/branch1
删除了它们。