.git Directory Explanation
In this article, we'll introduce Git folders .git
. We'll cover why Git creates folders and what they contain.
.git
What are folders
in Git ?
Git is a widely used version control system. Git repositories store the changes you make in your project.
.git
The .hdf directory stores all the data in your repository. This folder can store anything from information about your commits to your repository's email address.
You will also find a log containing your commit history. Using this log, you can restore the desired version of the code.
When you run git init
the command to initialize an empty repository, Git creates .git
the folder.
You can view this folder by running the following command.
ls -C .git
You can expect output like shown below.
$ ls -C .git
COMMIT_EDITMSG HEAD config hooks/ info/ objects/ refs/
FETCH_HEAD ORIG_HEAD description index logs/ packed-refs
Let's explore the contents of this directory further.
You can see what the object database contains by running the following command.
ls -C .git/objects
You should get the output as shown below.
$ ls -C .git/objects
03/ 24/ 30/ 77/ 87/ ac/ b6/ c6/ e1/ ec/ info/
19/ 29/ 4b/ 78/ 8b/ b1/ c3/ d4/ e6/ f6/ pack/
1f/ 2d/ 67/ 7b/ a6/ b2/ c4/ dd/ e9/ fa/
You can use ls -C .git/objects/<dir>
the command to query database objects.
Let's explore config
the ./configure/files. Run cat .git/config
the ./configure/files command as shown below.
pc@JOHN MINGW64 ~/Git (main)
$ cat .git/config
[core]
repositoryformatversion = 0
filemode = false
bare = false
logallrefupdates = true
symlinks = false
ignorecase = true
[gui]
wmstate = normal
geometry = 893x435+208+208 175 196
[remote "origin"]
url = https://github.com/Wachira11ke/Delftscopetech.git
fetch = +refs/heads/*:refs/remotes/origin/*
HEAD
The file refers to your master branch by default.
.git
The folder is always hidden to prevent corruption. If you delete the file, you cannot recover the changes in the repository.
For reprinting, please send an email to 1244347461@qq.com for approval. After obtaining the author's consent, kindly include the source as a link.
Related Articles
Cherry-Pick Merge Commits in Git
Publish Date:2025/03/29 Views:105 Category:Git
-
When multiple developers from the same team are working on a project, regardless of the complexity of the project, handling and managing changes between Git branches becomes very difficult. Sometimes, we need to merge some specific commits
Fatal: Refusing to Merge Unrelated Histories error in Git
Publish Date:2025/03/29 Views:123 Category:Git
-
This article outlines the steps required to resolve the fatal: refusing to merge unrelated histories error in Git. We usually encounter such errors when trying to merge two unrelated Git projects into one branch. It pops up when the receivi
Clone a remote repository using submodules in Git
Publish Date:2025/03/29 Views:58 Category:Git
-
This article will discuss how to clone a remote Git repository using submodules. We will also create a submodule and push it to the remote repository before cloning it. Clone a remote repository using submodules in Git We clone our reposito
Using SSH keys to clone a repository or branch in Git
Publish Date:2025/03/29 Views:138 Category:Git
-
SSH Git cloning provides a secure way to clone remote repositories. This tutorial shows the complete method of Git cloning using SSH keys - how to generate SSH keys, set up SSH in Git, and use SSH keys for Git cloning. We also showed some u
Clone the repository in Git
Publish Date:2025/03/29 Views:146 Category:Git
-
Git is known as one of the best and most demanding version control systems for all developers around the world. As of now, it is a distributed version control system that utilizes its local repository and delegates the typical version contr
Clone Git using username and password
Publish Date:2025/03/29 Views:75 Category:Git
-
In this article, we will learn how to clone an existing repository using username and password in Git. In Git, we use the command git clone to clone an existing remote repository to our local computer. When we call git clone the command, we
Clone into a non-empty Git directory
Publish Date:2025/03/29 Views:108 Category:Git
-
This article will show you how to clone a Git repository to a non-empty folder. This operation comes in handy when you want to merge files from a remote repository with files in your current local repository. In Git, clone into a non-empty
Clone all branches in Git
Publish Date:2025/03/29 Views:132 Category:Git
-
When developing software using Git, you can create different branches for different features. This article will explain how to clone all different branches from remote to local in Git. Git clone all branches When using Git, you may need to
Clone a private repository in Git
Publish Date:2025/03/29 Views:106 Category:Git
-
This article will teach you how to use Git to clone a private repository hosted on Github. Git is a version control system used to track changes in a project directory. Git uses commits for such purposes. Github provides Internet hosting fo