in Technology by

How is a bare repository different from the standard way of initializing a Git repository?

Please log in or register to answer this question.

1 Answer

0 votes
by

Using the standard method:

git init

You create a working directory with git init

A .git subfolder is created with all the git-related revision history

Using the bare way

git init --bare

It does not contain any working or checked out a copy of source files

Bare repositories store git revision history in the root folder of your repository, instead of the .git subfolder

Related questions

...