Undo last commit in Git
While using Git, we come across various situations where we intentionally want to undo the last commit because we want to re-commit it extensively or even delete it completely due to a mistake we made in the past. Just imagine Undo Last Commit
how many people would use Git if it had easy options and even the most popular keyboard shortcuts.
We have a simple yet powerful command, the same as discussed above. This command is so powerful because it discards the last commit and restores HEAD (the current branch) to the state it was in before the last commit was made in that repository. This can be a little confusing for new Git users, but once we get the hang of it, it becomes such a simple addition to our Git toolbox.
Undo last commit in Git (long version)
First, open the desired terminal, and run Git status. This will show us the status of our repository, including a list of all the commits we have made. Most of the time, it will say there are three commits.
The first is master
a commit to a branch called , which is our current branch in the repository. The second is Dev
a commit to a new branch called , and finally, the third is NewDev
a commit to another branch called .
The last two are interesting, because they are what we want to undo. We want to discard the commits we made to Dev
and NewDev
, and restore HEAD to the state it was in before those commits. Let's run the following command and see what happens afterwards:
$ git reset --hard
HEAD is now in its previous state. As we can see, the new HEAD pointer is now back to the next commit. Note that there is no longer Dev
a commit labeled . Also, the NewDev
commit labeled is back to 下一个提交
.
Undo last commit in Git (short version)
If we want to undo the last commit, make sure we are on the branch we want to undo the commit on, then run git reset --hard. If we want to undo the last commit on the current branch, make sure we are on master
, then run the following command.
git reset --hard origin/master.
The above procedure can be applied only when we are absolutely sure that these changes are no longer required. But on the other hand, if we need to keep these changes as uncommitted local changes in the working copy, then for this case, reset
the command is how we can solve this problem:
$ git reset --soft HEAD~1
reset
will undo our current HEAD branch to a specific point. In the example we mentioned above, we commanded to go back to the last commit before the most recent undo - advantageously creating our last unfinished commit. --soft
The -p flag ensures that changes in the unfinished revision are reverted.
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
Push to a specific branch in Git
Publish Date:2025/04/02 Views:53 Category:Git
-
In Git, we use branches to develop independent features directly from the main workflow of the project. Since Git is considered to be the best version control system so far, we have local and remote branches in our repository for different
Solve the Git Push Everything Up-To-Date Problem
Publish Date:2025/04/02 Views:120 Category:Git
-
Git is a free, open source version control system designed to work with projects quickly and efficiently. You can make changes to your repo and push them to master branches. This article explains how to use git push the command to resolve e
Git merge development branch into feature branch
Publish Date:2025/04/02 Views:126 Category:Git
-
Creating new branches and merging them is considered to be the most powerful tool of Git. The ability of Git to create new branches and merge them into the development code is very useful for developers working in a team environment. This f
Understanding Git conflict markers
Publish Date:2025/04/02 Views:112 Category:Git
-
In this article, we will discuss git conflict markers. Understanding Git conflict markers When pulling changes from a remote repository, you may encounter merge conflicts. Merge conflict files can sometimes be confusing. A typical merge con
Selectively merge changes from different branches in Git
Publish Date:2025/04/02 Views:116 Category:Git
-
This article will discuss merging specific changes from one branch to another. As we know, when merging branches, Git merges all files without exception. You may find yourself in a scenario where you have some commits in one branch and you
Complete the merge after resolving conflicts in Git
Publish Date:2025/04/02 Views:63 Category:Git
-
This article describes the process of completing a merge after resolving merge conflicts in Git. We will go through the merge steps, resolve the conflicts, and complete the merge. Complete the merge after resolving conflicts in Git For a si
Merge the development branch into Master in Git
Publish Date:2025/04/02 Views:167 Category:Git
-
This article provides an overview of merging a development branch into the master branch. Often we find ourselves creating a branch outside of the master branch for development. Once we are happy with the changes, we can merge them into mas
Recovering a conflicting Git merge
Publish Date:2025/04/02 Views:160 Category:Git
-
This article explains the revert command when a merge conflict occurs git merge . We will also take a quick look at how to undo a git merge that was successful and has been pushed to a remote repository. Recovering a conflicting Git merge I
Git merge-base determines the most recent common ancestor of two branches
Publish Date:2025/04/02 Views:126 Category:Git
-
This article explains how we can find the most recent common ancestor commit in Git. This comes in handy when you create a branch or merge one branch into another. Without further ado, let’s get into today’s topic. Determine the most re