0

I'm trying to clone https://github.com/ornicar/lila to my PC. That project have a link to other project in https://github.com/ornicar/lila/tree/master/modules/chess and when I simply do git clone git@github.com:ornicar/lila.git it doesn't clone chess content. How to fix that?

Hugo y
  • 1,421
  • 10
  • 20
Ivan
  • 105
  • 1
  • 6

1 Answers1

2

What you want is git submodule update --init after you clone the main repo. It will fetch the other repo and place it in the proper location.

Daiku
  • 1,237
  • 11
  • 20