On Thu, May 17, 2012 at 10:15 PM, Tomas Carnecky <tomas.carnecky@xxxxxxxxx> wrote: > On Thu, 17 May 2012 22:06:51 +0200, Bartosz Gęza <bartoszgeza@xxxxxxxxx> wrote: >> I'd like to speed up fetching objects from remote repositiories when creating >> multiple clones on one or more machines in LAN. > Does git clone --reference do what you want? I didn't know about --reference, but that's not it. I've tried it just now: $ git init --bare reference.git Initialized empty Git repository in /.../reference.git $ git clone --reference ./reference.git/ git://someurl/foo.git foo Cloning into 'foo'... [...] (fetches whole pack) $ git clone --reference ./reference.git/ git://someurl/foo.git foo2 Cloning into 'foo2'... [...] (fetches whole pack again) Reference is read only (?) I'd like to set up one global cache repository and forget. Later as I fetch any objects they are stored there for fast future access. -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html