JIYIK CN >

Current Location:Home > Learning > OPERATING SYSTEM > Git >

Undoing a commit in Git

Author:JIYIK Last Updated:2025/03/28 Views:

This post will cover how we can revert things we didn’t mean to do when using Git commits. Git isn’t so complex that we need a big process to solve our specific problem, but it’s not just that the problems it causes are so big that they require different techniques depending on the problem we’re having and the outcome we want.

Many aspects of Git are easy to understand, but getting back to where we were before is much easier and appreciated; undoing major changes in a repository is even easier. It's a slightly scary moment when we don't know how to use the commands to execute. But in reality, doing small things like committing or undoing a commit is surprisingly easy.

But in this case how would you undo the unwanted commit and then commit your new changes.

Suppose you make some changes and then commit the changes. To do this, there are four ways to do this:


Undoing a commit in Git - Hard Reset

If you have this, 40 of them are yours HEADand (42) are the status of our file.

   (42)
38-39-40
  Head

and you want to undo commit 40 and never want to see it again and remove all changes in your locally modified files.

We will use the following commands:

git reset --hard HEAD ~ 1

Output:

 (42)
38-39
 Head

Now 39 is HEAD. Because in the example above, we used --hard, now your files are reset to the state they were in at the time of the commit head, which is the 39th commit.


Undoing a commit in Git - Resetting Git

Let's assume that the last commit 40 wasn't a big deal, just a little off from our goal. Now we want to undo the commit but keep our changes. Start over from here, with 40 as our HEAD:

   (42)
38-39-40
  Head

Instead of using --hardthe -p parameter, we will use the following command:

git reset HEAD ~ 1

Output:

   (42)
38-39-40
Head

As we can see in both cases, HEADonly the latest commit is defined. When we execute git reset HEAD~1, the Git command HEADmoves the pointer back one commit. But (unless you use --hard) we leave the files as they are. We haven't lost anything.


Undoing a commit in Git - Soft reset Git

Simply put, you can even undo our commit but keep our files and index with the following command:

git reset --soft HEAD ~ 1

This not only leaves our files there; it even leaves our index there. When we execute git status, we'll see that the files in the index are the same as before. In fact, we'll see after this command that we can execute git commit, and it will re-execute the earlier commit we just made.


Undoing a commit in Git - Recovering a hard reset file

Suppose we undo a commit like in the first option example, but later realize we need it back. Now, what to do?

Don't worry, there is a way to get it back. We'll use the command git reflogand look at the list of (unfinished) commits we moved. Find the commit we destroyed, and do:

git checkout -b BranchName CommitYouDestroyed

We have now restored that commit. In Git, commits are not deleted for 90 days from the day they were deleted, so we can easily restore it again to our repository as a backup.

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:

Related Articles

Git authentication

Publish Date:2025/03/28 Views:163 Category:Git

This article demonstrates connecting a local repository to a remote repository on GitHub/Gitlab without getting 身份验证失败 error messages. Creating a local repository from scratch in Git To create a local repository from scratch, fo

Log graphs in Git

Publish Date:2025/03/28 Views:96 Category:Git

This article shows you how to use git log the command to graphically view the commit history in Git. Viewing log graphs in Git The command git log displays all the repository history at once snapshots(commits) . This command has a default f

Git refresh remote branch

Publish Date:2025/03/28 Views:93 Category:Git

Git is considered to be the most accurate and the most used software by developers in their projects and can be operated by multiple developers simultaneously. It provides many unique and quirky features to the developers which are very dif

Updating Git on Mac

Publish Date:2025/03/28 Views:181 Category:Git

When working on Git, you should stay updated with the latest version to get its latest features. This article will discuss how to install and update the latest version of Homebrew and Git on your personal computer. Homebrew on Mac Homebrew

Enable Git Tab Auto-Complete

Publish Date:2025/03/28 Views:109 Category:Git

This tutorial demonstrates how to enable git tab autocompletion. Importance of enabling Git Tab auto-completion When developers work with source code, they mostly prefer Git as it is a very familiar and convenient platform for developers th

Restoring a repository in Git

Publish Date:2025/03/28 Views:158 Category:Git

Sometimes while using Git, we come across a situation where we want to pull the latest changes from the remote repository and it conflicts with the existing modifications or files, then we have to push those files to the storage. Git provid

Undo Git Stash Pop conflicts

Publish Date:2025/03/28 Views:178 Category:Git

You can undo this using the solutions in this article git stash pop with merge conflicts . We show you how to abort an erroneous stash pop operation and return to a clean state. But we also demonstrated a git stash pop way to resolve the co

Resolving Git stash conflicts without committing

Publish Date:2025/03/28 Views:72 Category:Git

This article outlines the steps you should follow to resolve Git stash conflicts without reverting or creating commits. For a simpler context, we will simulate a situation where the git stash pop command results in a conflict and try to res

Git Stash needs to be merged

Publish Date:2025/03/28 Views:128 Category:Git

Git is a stylish platform that provides us with many features, one of the main ones is storage. With this unique feature, we can accumulate a lot of unchanged work that we don't want to commit to our repository when the code is checked in;

Scan to Read All Tech Tutorials

Social Media
  • https://www.github.com/onmpw
  • qq:1244347461

Recommended

Tags

Scan the Code
Easier Access Tutorial