How to git clone from *local bare* repository

Omer Dagan picture Omer Dagan · Aug 16, 2016 · Viewed 9.1k times · Source

Say I have a bare repository on my local machine at ./new-bare.git. What is the correct way to clone it to another location on my machine?

Answer

frlan picture frlan · Aug 16, 2016

There is no difference in cloning from a not bare repository:

/tmp> mkdir foo
/tmp> git init --bare foo 
Initialized empty Git repository in /tmp/foo/
/tmp> git clone /tmp/foo /tmp/baa
Cloning into '/tmp/baa'...
warning: You appear to have cloned an empty repository.
done.