Undoing Committed Changes

Goals

  • Learn how to revert changes that have been committed to a local repository.

Undoing Commits

Sometimes you realized that a change that you have already committed was not correct and you wish to undo that commit. There are several ways of handling that issue, and the way we are going to use in this lab is always safe.

Essentially we will undo the commit by creating a new commit that reverses the unwanted changes.

Change the file and commit it.

Change the hello.rb file to the following.

hello.rb

  1. # This is an unwanted but committed change
  2. name = ARGV.first || "World"
  3. puts "Hello, #{name}!"

Execute:

  1. git add hello.rb
  2. git commit -m "Oops, we didn't want this commit"

Create a Reverting Commit

To undo a committed change, we need to generate a commit that removes the changes introduced by our unwanted commit.

Execute:

  1. git revert HEAD

This will pop you into the editor. You can edit the default commit message or leave it as is. Save and close the file. You should see …

Output:

  1. $ git revert HEAD --no-edit
  2. [master b083abb] Revert "Oops, we didn't want this commit"
  3. Date: Sat Jun 20 20:37:06 2020 +0100
  4. 1 file changed, 1 insertion(+), 1 deletion(-)

Since we were undoing the very last commit we made, we were able to use HEAD as the argument to revert. We can revert any arbitrary commit earlier in history by simply specifying its hash value.

Note: The --no-edit in the output can be ignored. It was necessary to generate the output without opening the editor.

Check the log

Checking the log shows both the unwanted and the reverting commits in our repository.

Execute:

  1. git hist

Output:

  1. $ git hist
  2. * b083abb 2020-06-20 | Revert "Oops, we didn't want this commit" (HEAD -> master) [Jim Weirich]
  3. * 7a4110f 2020-06-20 | Oops, we didn't want this commit [Jim Weirich]
  4. * 4254c94 2020-06-20 | Added a comment (tag: v1) [Jim Weirich]
  5. * c8b3af1 2020-06-20 | Added a default value (tag: v1-beta) [Jim Weirich]
  6. * 30c2cd4 2020-06-20 | Using ARGV [Jim Weirich]
  7. * 4445720 2020-06-20 | First Commit [Jim Weirich]

This technique will work with any commit (although you may have to resolve conflicts). It is safe to use even on branches that are publicly shared on remote repositories.

Up Next

Next, let’s look at a technique that can be used to remove the most recent commits from the repository history.