我想删除我的项目存储库的一些远程分支。我运行了下一个命令:
git push origin :name_of_branch
当我列出远程分支时
git branch -r
我删除的分支没有出现,但我的一个伙伴运行
git fetch
然后
git branch -r
在列表中,name_of_branch
我删除的分支仍在列表中。但是,当他尝试删除分支时
git push origin :name_of_branch
他收到下一条消息:
error: unable to delete 'name_of_branch': remote ref does not exist
error: failed to push some refs to 'the_name_of_the_repository'
我怎样才能完全删除列表的分支?