Revert a file to a previous commit in Git
Git is a version control system. We use it to track changes made to files in a project directory. In a collaborative development environment, many team members often work on the same files and make changes to them.
We often face a situation where we no longer find the current version of a file's changes suitable for our purposes. So, in such cases, we want to revert such a file to a specific previous version of that file.
Using Git, we can accomplish reverting a file to a previous commit.
This tutorial will teach you how to revert a file to a previous commit in Git. We will illustrate this through an example.
Reverting a file to a previous commit in Git
We use Git in a collaborative development environment to track changes made to files. Git uses commits to accomplish the task of tracking changes to files.
Therefore, using the commit history of a file, we can view the various changes made to the file by different versions.
Often, we may encounter a situation where we find that the current version of a file no longer suits our needs. In addition, we find that a specific revision in the file's commit history better suits our current needs.
So, in this case, we want to revert the file to a previous version or commit in the commit history of the Git repository.
Suppose there is a file named in our project Git repository README.md
. We can use git log
the command to browse the commit history of the file, as shown below.
$ git log --oneline README.md
814b51e Updated README.md, further notes
9cbe84d Updated README.md, added some notes
dfe8d6c Initial commit
We find that the SHA hash 9cbe84d
gives README.md
the version of the file at the commit we want.
To do this, we can use the command git checkout
. The command syntax to revert a file to a previous commit is git checkout <commit> -- <file-to-revert>
.
So we need to do the following to revert the file to the version given by the commit given by README.md
the SHA hash .9cbe84d
$ git checkout 9cbe84d -- README.md
README.md
9cbe84d
The file is reverted to a previous commit given by SHA hash .
Please note that you should use git checkout
the command with caution. Local changes made to the file will be discarded. Git replaces the file with the given committed version.
Make sure to use it only if you are sure and don't want those unsaved local changes.
So, we showed how to revert a file to a previous commit in Git.
For more information, please visit the following link.
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
Adding files in Git
Publish Date:2025/03/27 Views:74 Category:Git
-
This article will discuss different ways to add files to our repository on Git. In Git, use git add the command to add all files We can git add add all the files without exception using the command as shown below. git add -A -A The -p param
Different ways to add files to staging with Git
Publish Date:2025/03/27 Views:199 Category:Git
-
While the command git add is probably the most commonly used command for adding files to your stash, other flags may come in handy depending on the situation. This article takes a deep dive into git add the flags you can use with the comman
Git add folder
Publish Date:2025/03/27 Views:100 Category:Git
-
git add Used to add specific folders and files. This tutorial will handle it in a modern way git add folder . git add Add all or specific folders and files to staging in Git using Use the following syntax to add files: git add file Use the
Recursively add files and folders in Git
Publish Date:2025/03/27 Views:136 Category:Git
-
Sometimes, we come across a situation where we have to adjust some files, folders, and subfolders that already exist in Git. A part of a nested folder system has to be added remotely to Git. This article will discuss how to use commands to
Undoing rm in Git
Publish Date:2025/03/27 Views:79 Category:Git
-
In Git, the term rm is git remove an alias for the command. So it is used to remove a single file or a bunch of files from the repository. git rm The main functionality of in Git is to remove tracked files using Git index. However, git rm i
Git synchronizes branches with Master
Publish Date:2025/03/27 Views:61 Category:Git
-
Git is a well-organized distributed version control system that can be very effective in managing source code in a distributed team of developers. When different developers are working on different product features, once they have completed
Setting Upstream in Git
Publish Date:2025/03/26 Views:152 Category:Git
-
In this article, we will learn how to use in Git upstream . When using Git by cloning and creating new repositories in branches, we must set up upstream branches for future commits and fetches. But first, we should understand what is upstre
Add Git to PATH on Windows
Publish Date:2025/03/26 Views:92 Category:Git
-
Git is a free and open source version control system designed to work with projects quickly and efficiently. You can use it on Windows, Mac, and Linux operating systems. This article explains how to add git to your Windows PATH environment
Open a file in Git Bash
Publish Date:2025/03/26 Views:68 Category:Git
-
We cannot use open in Git Bash. If you try to open a file using open on Git Bash, you will get the error bash: open: command not found . This short article explains how to open a file on Git Bash for Windows. Open a file in Git Bash We can