Skip to content
Héctor Adrián Valdecantos edited this page Mar 2, 2015 · 2 revisions

Cloning Interactive Churn project

Interactive Churn project has a git submodule inside it, in the directory /spec/samplerepo. To pull all files from the entire project you need to add --recursive option when cloning:

$ git clone --recursive https://github.com/andymeneely/interactive_churn.git

It can also be done in two steps:

$ git clone https://github.com/andymeneely/interactive_churn.git
$ cd interactive_churn/spec/samplerepo
$ git submodule init
$ git submodule update

From documentation: 7.11 Git Tools - Submodules

Update submodule

git submodule update --remote