DevOps / GIT Interview Questions
What is a repository in GIT?
Git stores project details and files information in a data structure called a repository. The Git repository is stored in the same directory as the project itself, in a subdirectory called .git.
A git repository contains, among other things, the following:
- A set of commit objects.
- A set of references to commit objects, called heads.
More Related questions...