Restore a Git repository by commit ID
This article will discuss restoring a Git repository based on commit ID. We may need to go back to an older commit to check its status or delete later commits.
Let us discuss both cases.
Temporarily switch to Git commit
We use git checkout
the command to temporarily switch to an older commit while mentioning the commit ID.
$ git checkout <Commit ID>
This command will detach our repo HEAD
(we are not checked out on a branch). In this state we cannot commit.
As shown below, we have to create a new branch based on the commit.
$ git switch -c <new-branch-name>
We can combine the above commands to do the same thing as shown below.
$ git checkout -b <new-branch-name> <Commit ID>
Restore a Git repository by commit ID
We use the --hard
rollback git reset
command with the -f flag while passing it the commit ID we want to roll back to. Run the following command.
$ git reset --hard <Commit ID>
Running this command will remove all our recent commits until the mentioned commit. The command will also remove any uncommitted changes in the index.
If you want to keep your changes, do the following:
$ git stash
$ git reset --hard <Commit ID>
$ git stash pop
If you want to update the remote repository, use the following git push
command.
$ git push -f
Be careful with this command as it will overwrite the remote repository with your local repository. Let's look at an example.
In the following example, we will try to restore our git repo based on the commit id Delftscopetech
. Let's run git log
the command to list all the commits in our repo.
$ git log --oneline
If we wanted to go back Fourth Update
, what would we do?
We run the command in the following context git reset
.
$ git reset --hard df90895
HEAD is now at df90895 Fourth Update
The output shows that our HEAD
is now at Fourth Update
. We can run git push
the command to push the changes to our remote repository.
If you want to undo the reset, follow this.
First, we run git reflog
the command to see all reference updates in our repo.
$ git reflog
Your output will look similar. We can HEAD@{0}
see our reset at .
To go back, we run git reset
the command as shown below.
$ git reset HEAD@{1}
Now let's check our commit history.
$ git log --oneline
Our HEAD
is back 第六次更新
.
In short, it is very easy to restore your Git repository based on commit ID. If you want to temporarily switch to a commit, use git checkout
the command.
To revert to a specific commit, use git reset --hard
the command and specify the commit hash.
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
Moving commits to another branch in Git
Publish Date:2025/04/01 Views:200 Category:Git
-
Git is a very useful and powerful tool in the modern software world. Many types of files and codes can be stored through branches and commits in Git. Branches are a different concept depending on the version control system you use. Many dev
Git push using SSH keys
Publish Date:2025/04/01 Views:94 Category:Git
-
SSH stands for Secure Shell. It is the key that provides us with the credentials to access the SSH network protocol. It provides access to remote servers between engines on an unsecured open network. It is used for transferring data, files,
Delete commits but keep changes in Git
Publish Date:2025/04/01 Views:179 Category:Git
-
This article outlines the steps necessary to undo a Git commit while preserving the changes introduced by the same commit. We'll cover two commands we can use that have the same effect. Without further ado, let’s jump right in. Remove com
Different ways to commit untracked files in Git
Publish Date:2025/04/01 Views:198 Category:Git
-
This article discusses the different methods we can use to commit untracked files in Git. If you introduce new files in your project in Git, these files will fall under the category of untracked files. With respect to the Git version contro
Git add all but one file to commit
Publish Date:2025/04/01 Views:73 Category:Git
-
This article explains how to add all files to commit while excluding selected files. This comes in handy when you have many files to include in a commit and must leave out one file. Instead of adding files one at a time, you can follow thes
Git exits the commit message editor
Publish Date:2025/04/01 Views:91 Category:Git
-
This article outlines the steps to exit the commit message editor in Git. When you merge or make a commit in Git, the console prompts you to provide a commit message that briefly describes the new commit. Git opens your default text editor,
git add, git commit and git push are combined into one command
Publish Date:2025/04/01 Views:142 Category:Git
-
This article discussed two methods that you can use to add, commit, and push files to a remote repository with a single command. When making small changes to a single file, you still need to follow the three-stage process of publishing chan
Git Add and Git Commit merged into one command
Publish Date:2025/04/01 Views:184 Category:Git
-
This article discusses combining the git add and git commit commands into one command line. Combining the two commands into one can save you time. When combining these two commands, you have to keep in mind what you are committing to. Let's
Git list commits
Publish Date:2025/04/01 Views:66 Category:Git
-
Git is the most common, free and open source distributed version control system. It has repositories that play an important role in the Git world. As a result of this feature of Git, repositories hold a huge significance in the life of deve