Differences between Git Reset, Revert and Checkout commands
This article discusses the differences between the git reset
, , git revert
and git checkout
commands. These are some of the most useful Git utilities that allow us to undo certain changes in our repository.
It’s easy to get confused with these commands, but by the end of this article, you’ll feel confident using the above commands to use and navigate your repositories.
Differences between Git Reset, Git Revert, and Git Checkout commands
It's easier to understand these commands if we're clear about how each command affects the three main components of a Git repository.
- Working Directory
- Staging snapshots
- We can also refer to the above components as three trees.
Git checkout
What does it mean to check out?
This operation repositions the HEAD pointer to the specified commit.
The figure above shows a series of commits in a Git repository. The HEAD and master branch pointers are currently at commit d.
git checkout
We can move our HEAD ref to any commit
using the command.
For example, to move our HEAD ref to commit b, we would run:
$ git checkout -b
We can use git checkout
the command at both commit and file level. Checking out at file level will update the contents of the file with the contents of the specified commit.
Git revert
When reverting, we take a specific commit and create a new commit to reverse the effect of the specified commit. git revert commit
It only works at the commit level and does not have file-level functionality.
Git reset
When resetting, we make a specific commit, reset the three trees, and update the repository to match the state of the repository at the specified commit. We can reset in three different modes corresponding to the three trees.
We usually use git reset
and git checkout
to undo local or private changes. They both modify the history of the repository and may cause conflicts when pushed to a remote public or shared repository.
Git Reset vs. Git Revert vs. Git Checkout
The following table gives some common use cases for these three commands.
Order | scope | Common use cases |
---|---|---|
git reset | Submission Level | Remove commits in your local branch or discard uncommitted changes. |
git reset | File Level | Unstage a file from the index. |
git checkout | Submission Level | Check out old commits and switch between branches. |
git checkout | File Level | Discard changes in the working directory. |
git revert | Submission Level | Reverse the effects of commits in the public branch. |
git revert | File Level | (not applicable) |
Submit Level Operations
We pass arguments to the git reset
and git checkout
commands to invoke different levels of operations. If we fail to include the file argument, the command will operate on the commit as a whole.
Reset Submissions
Resetting on commit level will move the HEAD ref to the specified commit. We can use this command to remove commits from a branch.
Here is an example.
$ git reset HEAD~3
The command above will move the tip of our branch back three commits. We can call them dangling or orphaned commits.
We have discarded these three commits. It is best to use this command to undo commits that we have not yet published to the remote shared repository.
We can also use the git reset command to change the staging snapshot and the working directory by passing one of the following flags.
- --soft - Do not change staged changes or the working directory.
- --mixed - does not affect the working directory, but changes the staged snapshot to match the specified commit.
- --hard - Change the working directory and staged snapshot to match the specified commit.
Check out old commits
We can git checkout
check the state of the repository at a specific commit using the command. We can also switch between branches by using the branch name.
Here is an example.
$ git checkout feature
The command above will switch to the feature branch. It will not move the branch around.
We can also checkout an arbitrary commit by passing a commit hash or ref instead of a branch name. Here is an example.
$ git checkout HEAD~1
The above command will check the parent of our current commit. Passing HEAD~2 will check the grandparent.
The above command will switch us to detached HEAD mode, since our current HE****AD has no branch references.
All changes and commits done in detached HEAD mode will be inaccessible once you switch to another branch. Always create a new branch when you want to commit changes in detached HEAD state.
Restore a shared submission
When we revert a commit, we create a new commit that reverses the effect of the specified commit. In this way, we avoid rewriting the commit history of the shared repository.
For example, if we wanted to revert the most recent commit, we would run:
$ git revert HEAD
File-level operations
git checkout
The and git reset
commands accept a file path as an optional argument. The effects of these commands are limited to a single file.
Reset Files
We can update the staged snapshot of a file to match the version at a specified commit as follows.
$ git reset HEAD~1 README.md
The command above will get the version of the README.md file in the parent commit of the current commit and add it to the index of the next commit. We can run git reset HEAD README.md
to unstage the README.md file.
Git Checkout Files
Passing a file path to git checkout
the command updates the working directory instead of staging a snapshot. This does not move the HEAD pointer between branches.
Here is an example.
$ git checkout HEAD~1 README.md
This will take the version of the README.md file from the parent commit of our current commit and update only the README.md file in our working directory. It simply means that we have reverted to the version of the file in the old commit.
Unlike the command , which undoes the changes introduced by a specified commit git revert
, this discards all subsequent changes. We can use this to discard unstaged changes to a single file, as shown below.
$ git checkout HEAD README.md
In summary, we can easily distinguish between git reset , git revert , and git checkout commands by understanding the impact of each command on the commit history, staging snapshot, and working directory.
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.
Article URL:https://www.jiyik.com/en/xwzj/opersys_10232.html
Related Articles
Changing drives in Git Bash
Publish Date:2025/03/30 Views:56 Category:Git
-
This short article will discuss how we can use Git Bash to have a Unix-style command line environment in Windows operating system and run multiple commands in this terminal. Git Bash Git is a collection of command-line utilities created to
Adding a remote branch in Git
Publish Date:2025/03/30 Views:142 Category:Git
-
Git does not allow its developers to create new branches on remote repositories. But instead, we can push an already existing local branch, and after doing so, we can bring it to the remote repository using some Git commands. In every versi
Synchronize your local repository with a remote repository in Git
Publish Date:2025/03/30 Views:92 Category:Git
-
This article outlines the process of syncing your local repository with a remote repository. We will also see how to sync a GitHub branch with a remote repository on the command line. Synchronize your local repository with a remote reposito
Creating a remote repository from a local repository in Git
Publish Date:2025/03/30 Views:105 Category:Git
-
This article discusses the necessary steps to create a remote repository based on a local repository. This is ideal when you have a local repository that needs to be available on a remote or SSH-enabled server. Creating a remote repository
Removing the upstream repository in Git
Publish Date:2025/03/30 Views:177 Category:Git
-
This article will teach you how to delete an upstream repository in Git. We may sometimes need to delete or change the remote repository that we use with our local repository. To do this, we can use the Git command git remote . Removing the
Git remote add SSH
Publish Date:2025/03/30 Views:53 Category:Git
-
In this day and age, the most widely used version control system is Git, which is operated by most developers within a team structure. This is mainly used to increase code efficiency, no matter how big or critical the project is. In this se
Creating and using branches in Git
Publish Date:2025/03/30 Views:99 Category:Git
-
This article introduces Git branches. We will see how Git branches can help you organize your projects. Some of the commands we will deal with are git branch and git checkout . git branch Use commands to create, display, and delete branches
Git force pull
Publish Date:2025/03/29 Views:166 Category:Git
-
In this tutorial, we will learn how to force pull changes from a remote repository in Git. Sometimes, we may need to discard local modifications and replace them with updates from a remote repository in a collaborative development environme
Git pulls Master into the branch
Publish Date:2025/03/29 Views:193 Category:Git
-
When developing software using the Git tool, you can create different branches for different features. When you make changes to master, these changes are not automatically added to other branches. This article will explain how to pull all t