我正在尝试检查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.
答案 0 :(得分:0)
因为远程git存储库没有创建master
分支。您可以使用git branch -r
查看其他分支,并使用git checkout -b xxx origin/xxx
签出远程分支代码。或者尝试git help symbolic-ref
了解更多信息。