DevOps / GIT Interview Questions
What is the difference between git init and git init --bare?
Non-Bare variant creates a repository with a working directory so you can actually work.
The bare git init creates a repository without a working directory.Bare repositories are usually central repositories where everyone moves their work to.
More Related questions...