Re: Selectively clone Git submodules -- a useful feature?

2016-03-19 Thread Stefan Beller
On Thu, Jun 18, 2015 at 1:55 PM, Lars Schneider wrote: > Hi, Hi, sorry for a real late answer to this, > > AFAIK Git has two ways to clone a repository with respect to submodules: > > (1) Plain clone of just the repository itself: > git clone

Re: Selectively clone Git submodules -- a useful feature?

2015-06-19 Thread Jens Lehmann
Am 18.06.2015 um 22:55 schrieb Lars Schneider: 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

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 working