In Version Control with Git by Loeliger, it uses the following command to make a clone repository a bare repository i.e. a repository without a working directory
git clone --bare ~/public_html public_html.git
Is the clone repository created by git clone
without --bare
a repository with a working directory?
How can I tell if an existing repository has a working directory or not?
Thanks.