OroshiX Personal site and Blog

How to get a working copy of a bare repository in git?


Bare repository to working tree

A bare repository has all the information about the git repository, but no working tree.
In order to get a working copy of a bare repository, you can type this command:

git clone path/to/bare/repo.git myCloneRepo

Comments