2

推送标签名称 v2.3 时出错,我已经有了分支名称 v2.3。当我尝试删除分支 v2.3 时:

git push origin :v2.3

它说,

qty:ibt-common qrtt1$ git push origin :v2.3 :v2.3_working
error: dst refspec v2.3 matches more than one.
error: failed to push some refs to 'git@github.com:mygit/common.git'

命名冲突时是否可以删除分支?

4

1 回答 1

4

您可以像这样消除 refspec 的歧义:

git push origin :refs/heads/branchname

此问题中的更多信息。

于 2013-03-08T02:56:42.787 回答