Undo the last Git commit in the local repository
This article will discuss how to undo the latest commit in Git. This comes in handy when we want to remove the changes introduced by a commit before pushing it to the remote repository.
Let’s get right into it.
Undo last commit in Git without modifying files
We'll start things off by discussing how to undo a commit when we have made previous modifications to a file. To do this, we use the command with -soft
the -p parameter git reset
to instruct Git to keep the contents of our file.
$ git reset --soft HEAD~1
The above command will remove HEAD
the last commit on our .
Let's look at an example. This is the commit history in our local repository.
$ git log --oneline --graph
* c5bf6c8 (HEAD -> master) Added a new file named "file.txt"
* 3b641e0 Second commit
* 21ca1e7 Initial commit
Let's run git reset
the command and check its effect on our local repository.
The output above shows that our file.txt
is in our index, but the commit does not exist. We can make modifications to the file and commit it again.
$ git log --oneline --graph
* c5bf6c8 (HEAD -> master) (HEAD)
* 3b641e0 Second commit (HEAD~1)
* 21ca1e7 Initial commit (HEAD~2)
Our command $ git reset --soft HEAD~1
removed the last commit. If we wanted to remove the last two commits, we would instead use , $ git reset --soft HEAD~2
and so on.
Sometimes, we may want to eliminate commits and files. We use the -d rm command with -hard
the -p option git reset
as shown below.
$ git reset --hard HEAD~1
The above command will remove all modifications associated with the commit from our index and working directory.
Let's look at an example. Here is a visualization of our commit history.
$ git log --oneline --graph
* c5bf6c8 (HEAD -> master) Added a new file named "file.txt"
* 3b641e0 Second commit
* 21ca1e7 Initial commit
In this case, we want to remove the last commit and undo the modifications.
We run:
$ git reset --hard HEAD~1
HEAD is now at 3b641e0 Second commit
Let's run git status
the command to check the status of our repo.
The output above shows that Git deleted the files from our index and working directory.
We may also need to undo the last commit and keep the changes in the working directory, but on our index. To do this, we git reset
add --mixed
the undo option to the undo command, as shown below.
$ git reset --mixed HEAD~1
Let's look at an example. This is the current state of our commit history.
$ git log --oneline --graph
* c5bf6c8 (HEAD -> master) Added a new file named "file.txt"
* 3b641e0 Second commit
* 21ca1e7 Initial commit
We run:
$ git reset --mixed HEAD~1
Our file should be visible in the working directory, but not in the index. Let's git status
confirm this with the command.
We can see our file.txt
under Untracked Files. This is another way to undo a commit while keeping your modifications.
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