2025-02-23 Web Development

Understanding and Using git revert

By O. Wolfson

git revert is a powerful command used in Git to undo changes in a repository while maintaining a clear and safe history. Unlike git reset, which rewinds the history and can lead to conflicts in collaborative environments, git revert creates a new commit that undoes changes from a specified commit. This makes it a safer option when working with shared repositories.

This article explores how git revert works, when to use it, when it may not be the best tool, and alternative approaches for modifying commit history.


How git revert Works

The git revert command undoes changes from a specific commit by generating a new commit that reverses the changes. This ensures that the repository history remains intact and avoids issues when collaborating with others.

Syntax

sh
git revert <commit-hash>
  • <commit-hash>: The identifier of the commit you want to revert.
  • Git will prompt you to enter a commit message for the revert commit unless you use the -m or -n flags.

Key Features

  • Creates a new commit instead of modifying the history.
  • Can be applied to a single commit or a range of commits.
  • Safe for shared branches since it does not alter commit history.

Best Use Cases for git revert

While git revert is useful, it is not always the right tool for the job. The best use cases include:

  1. Undoing a specific commit in a shared branch: Since git revert does not rewrite history, it allows you to remove changes while keeping the commit log intact.
  2. Fixing a buggy commit while keeping later changes: If an old commit introduced an issue, but newer commits made improvements, git revert can selectively remove the problem.
  3. Reverting a merged commit: If a feature branch was merged and later determined to be problematic, git revert allows you to roll back the merge without disturbing other commits.

When git revert Is Not the Right Tool

git revert is not the best choice in situations where:

  • You want to completely remove a commit from history (use git reset or git rebase instead).
  • The reverted commit has been modified by later commits, meaning reverting will not fully remove its effect.
  • You need to modify multiple past commits (interactive rebase is a better option).

Step-by-Step Tutorial

Step 1: Initialize a Repository

If you don’t already have a Git repository, create one:

sh
git init git-revert-demo
cd git-revert-demo

Step 2: Create a File and Make Commits

Create a new file and add some text to it:

sh
echo "Initial version" > example.txt

Stage and commit the file:

sh
git add example.txt
git commit -m "Initial commit"

Modify the file and make a second commit:

sh
echo "Added some changes" >> example.txt
git add example.txt
git commit -m "Added changes"

Make another change that introduces an issue:

sh
echo "Buggy feature added" >> example.txt
git add example.txt
git commit -m "Bug introduced in feature"

Make a final change that is unrelated to the bug:

sh
echo "Final enhancement" >> example.txt
git add example.txt
git commit -m "Final enhancement"

Step 3: Check the Commit History

View the commit history:

sh
git log --oneline

Identify the commit hash of the buggy commit (not necessarily the latest one).

Step 4: Revert an Older Commit

Instead of reverting the last commit, revert an older one (e.g., "Bug introduced in feature"):

sh
git revert <commit-hash>

Important: If later commits reintroduced similar changes, the revert might not fully remove them. Verify by checking example.txt after the revert.

Step 5: Verify the Changes and Fix if Needed

Check the file content:

sh
cat example.txt

If the buggy feature is still present (due to later commits preserving it), you may need to manually edit the file and commit the fix:

sh
git add example.txt
git commit -m "Manually removed buggy feature after revert"

Alternative Approaches

Using git revert --no-commit

For more control, use:

sh
git revert --no-commit <commit-hash>

This applies the revert without committing, allowing you to manually review and modify the changes before committing.

Using Interactive Rebase (git rebase -i)

If you need to remove or modify multiple past commits, git rebase is often a better choice:

sh
git rebase -i <commit-hash>^

Change pick to edit for the commit you want to modify, then manually adjust example.txt and commit the corrected changes.


Common Issues and Solutions

Merge Conflicts

Reverting commits that affect the same file may lead to conflicts. Resolve them manually and run:

sh
git revert --continue

Undoing a Revert

If you mistakenly revert a commit, you can revert the revert:

sh
git revert <revert-commit-hash>

This restores the original changes.


Conclusion

git revert is an essential Git tool for safely undoing changes without rewriting history. It is especially useful in collaborative environments where modifying commit history is discouraged. However, it is not always the best choice—especially if later commits have preserved parts of a reverted change.

When to use **git revert**: ✅ Removing a bad commit while keeping history intact. ✅ Undoing a change in a shared branch. ✅ Reverting a merge commit without disturbing others.

When to consider other options: ❌ Removing commits completely (git reset). ❌ Editing multiple past commits (git rebase -i). ❌ Reverting a commit that has been modified by later commits (git revert --no-commit + manual edit).

By understanding when and how to use git revert, you can ensure a clean and well-maintained project history.