The .git/objects directory in Git
Git consists of three main directories:
folder ./ your project directory/working directory ./.git/objects the archive/index directory ./.git/refs the branch/reference directory The working directory is the root directory of your project, just as you created it. Inside of it, there will be a .git subdirectory created by Git, where Git stores all of its files.
The ./.git/objects directory is the archive/index directory. It will contain a copy of each version of your files (archive), and an index of each version of your project with its directory and file structure (index).
[Read More]