Re: [git-users] Selectively clone Git submodules -- a useful feature?

2015-06-18 Thread Lars Schneider
wrote: On 18 June 2015 at 12:30, Lars Schneider larsxsc...@gmail.com javascript: wrote: Hi, AFAIK Git has two ways to clone a repository with respect to submodules: (1) Plain clone of just the repository itself: git clone git://github.com/foo/bar.git (2) Recursive clone

[git-users] Selectively clone Git submodules -- a useful feature?

2015-06-18 Thread Lars Schneider
Hi, AFAIK Git has two ways to clone a repository with respect to submodules: *(1)* Plain clone of just the repository itself: git clone git://github.com/foo/bar.git *(2)* Recursive clone of the repository including all its submodules: git clone --recursive git://github.com/foo/bar.git I am