警告:远程HEAD是指不存在的ref,无法结帐。并且没有找到分支

时间:2015-11-02 11:26:45

标签: git libvpx

我正在尝试检查libvpx,但我收到以下错误。

sudo git clone http://git.chromium.org/webm/libvpx.git
Initialized empty Git repository in /opt/ffmpeg/sources/libvpx/.git/
warning: remote HEAD refers to nonexistent ref, unable to checkout.
cd libvpx/
git branch -a
<nothing>

我甚至试图特意检查主分支但仍然没有。

sudo git clone http://git.chromium.org/webm/libvpx.git -b master
Initialized empty Git repository in /opt/ffmpeg/sources/libvpx/.git/
warning: Remote branch master not found in upstream origin, using HEAD instead
warning: remote HEAD refers to nonexistent ref, unable to checkout.

1 个答案:

答案 0 :(得分:0)

因为远程git存储库没有创建master分支。您可以使用git branch -r查看其他分支,并使用git checkout -b xxx origin/xxx签出远程分支代码。或者尝试git help symbolic-ref了解更多信息。