如何克隆 git 包含其他回购的回购?
How to clone git repo that have other repo in it?
我正在尝试将 https://github.com/ornicar/lila 克隆到我的电脑上。
该项目与 https://github.com/ornicar/lila/tree/master/modules/chess 中的其他项目有 link
当我只是做 git clone git@github.com:ornicar/lila.git 它不会克隆国际象棋内容。
如何解决?
你想要的是 git submodule update --init
在你克隆主仓库之后。它将获取另一个 repo 并将其放置在正确的位置。
我正在尝试将 https://github.com/ornicar/lila 克隆到我的电脑上。 该项目与 https://github.com/ornicar/lila/tree/master/modules/chess 中的其他项目有 link 当我只是做 git clone git@github.com:ornicar/lila.git 它不会克隆国际象棋内容。 如何解决?
你想要的是 git submodule update --init
在你克隆主仓库之后。它将获取另一个 repo 并将其放置在正确的位置。