How to get a working copy of a bare repository in git?
24 Feb 2019Bare 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