Undo the last commit in the remote Git repository
This article will discuss removing the last commit from the remote Git repository. Git can easily roll back to a previous commit if the current commit does not meet our expectations.
Let’s see how to do this.
Undo the last commit in the remote Git repository
Let's simulate a situation where we have to rollback a commit in a remote repository.
Our repository Delftscopetech
has one file README.md
. We will make changes, commit, and push them to the remote repository.
We have pushed our changes to our remote repository. Here is our remote repository.
In the case where we want to undo this commit, how would we proceed?
We will run git log
the command to display a list of all commits in our repo. Use --oneline
the -p option to simplify the output.
$ git log --oneline
The next step is to reset HEAD
so that the reference is at Sixth Update
. We will run git reset
the command and pass our Sixth Update
as Commit ID
shown below.
$ git reset --hard 27bd68b
HEAD is now at 27bd68b Sixth Update
If we were to run git log
the command, we would notice that Updated README.md File
the commit is missing. We have already deleted this commit from our local repository and the only thing left is to push the changes to our remote repository as shown below.
We will need to run a force push because the remote repository is one commit ahead. We run the following command.
$ git push -f
Our remote repository has been updated. Let's confirm it.
That's pretty much it. Before you undo the bad commit, make sure other developers haven't fetched from the remote.
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