0

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

1 回答 1

0

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

于 2015-11-02T11:56:33.330 回答