git bare vs no-bare

git --bare init
Current directory become into a repository, no working project files store in it.

git init
Current directory become the project directory,
and add a directory named .git to store repository.

留言