How to use git-download sub-modules
This address: Http://blog.csdn.net/caroline_wendy
code hosting is easier to manage on git, such as pedometer;the use of Git code, need to download, you can
manually clone code , decompression loading;
to create a folder, use commands within a folder:Download the project:
git clone [email protected]:android/pedometer.git
Download sub-modules:
git submodule update--init--recursive
and then configure it.
Reference: Http://git-scm.com/book/en/v2/Git-Tools-Submodules
attached:Download the project with Submodule
When using Git clone down the project with Submodule, the initial time, the submodule content will not be downloaded automatically. at this point, just execute the following command:
git submodule update--init--recursive
You can download the contents of the Submodule after the project will not be missing the corresponding files.
Linux-git How to use-Download sub-modules