警告:远程 HEAD 指的是不存在的 ref,无法检出。没有找到分支

warning: remote HEAD refers to nonexistent ref, unable to checkout. and no branches found

我正在尝试检查 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>

我什至尝试专门检查 master 分支,但仍然一无所获。

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.

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