Created
September 9, 2014 10:08
-
-
Save jbanety/865a6bf80943bb9a3608 to your computer and use it in GitHub Desktop.
Cloner un repo avec les submodules
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Pour un nouveau repo : | |
git clone --recursive git://github.com/foo/bar.git | |
cd bar | |
Pour les repos déjà clonés : | |
git clone git://github.com/foo/bar.git | |
cd bar | |
git submodule update --init --recursive | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment