How can I run Git submodules?
Posted
by marbrun
on Server Fault
See other posts from Server Fault
or by marbrun
Published on 2010-05-27T19:30:17Z
Indexed on
2010/05/27
19:42 UTC
Read the original article
Hit count: 205
git
How can I run these submodules? The only thing i can find on the web is information on how to create submodules. But i just need to run them. Is this really so difficult?
After you have clone the repository, you'll need to run the following to pull in all the submodules:
git submodule init
git submodule update
cd externals/curlcall
git submodule init
git submodule update
© Server Fault or respective owner