Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我做了
git clone https://github.com/niltsh/MPlayerX
它似乎正在下载所有内容。但是当它完成时,我进入文件夹,我发现很多东西都不见了。
为什么没有得到一切?是因为这些文件夹来自其他项目吗?
子模块丢失是因为您没有下载它们。以下命令应该可以获取它们。
$ git submodule init $ git submodule update
您也可以通过以下方式一步完成:
$ git clone --recursive RepoURLHere
:)