Lädt...


🔧 What is Git Revert


Nachrichtenbereich: 🔧 Programmierung
🔗 Quelle: dev.to

In Git, git revert is a command used to create a new commit that undoes the changes made by a specific commit or commits, effectively reverting the repository's state back to how it was before those changes were introduced. Unlike git reset, which alters commit history, git revert works by creating a new commit that inversely applies the changes introduced by the specified commit(s).

Git revert is similar to git reset, but the approach is slightly different. Instead of removing all the commits in its way, the revert ONLY undoes a single commit by taking you back to the staged files before the commit.

Image description
Here’s a basic overview of how git revert works:

  • Identify the Commit to Revert: Determine the commit(s) that introduced changes you want to revert.
  • Use Git Revert Command: Execute the git revert command followed by the commit hash or range of commits you want to revert.
  • Resolve Conflicts (if any): Git may prompt you to resolve conflicts if the revert conflicts with subsequent changes in the repository. Resolve conflicts as needed and continue the revert process.
  • Commit the Revert: Once conflicts are resolved (if any), Git will open a text editor for you to provide a commit message for the new revert commit. Save and exit the editor to complete the revert process.

👉 When should I use git revert?

git revert is useful when you want to undo commits that have already been pushed to a remote repository. It is a safe option because it does not destroy any commits and leaves a clear record of the changes made in the repository.

It is important to note that git revert can only undo commits that have not been merged into other branches. If you want to undo commits that are part of a merged branch, you should use git reset or another method to remove the commits.

The basic syntax for git revert is:

git revert <commit>

You can also revert multiple commits by specifying their hashes:

git revert <commit1> <commit2> ...

<commit> can be a single commit hash, a branch name, or a range of commits (specified using ...)

It’s important to note that git revert does not erase history but rather adds new commits to undo the changes introduced by previous commits. This makes it a safer option for reverting changes, especially in shared repositories where altering history using commands like git reset can cause conflicts for other collaborators.

Here’s an example of using git revert to revert a single commit:

touch test.py data.py

After creating those files, we need to add them to the modified version staging area.

git add test.py data.py

Before moving on, let’s have a look at the status by running the following command.

Before moving on, let’s have a look at the status by running the following command.

git status
Changes to be committed:
(use "git rm --cached <file>..." to unstage)
new file:   test.py
new file:   data.py

We can observe that the two files have been added, now, we can commit the changes.

git commit -m "Added the data script files"
[master (root-commit) eae84e7] Added the monitoring script files
2 files changed, 0 insertions(+), 0 deletions(-)
create mode 100644 test.py
create mode 100644 data.py

Now, let’s imagine that the previous commit was not intentional, and we want to get rid of it.

git revert eae84e7

[master c61ef6b] Revert "Added the data script files"
2 files changed, 0 insertions(+), 0 deletions(-)
delete mode 100644 test.py
delete mode 100644 data.py

This command will create a new commit that undoes the changes introduced by the commit with the hash eae84e7.

Let’s have a look at the log of the commits:

git log

commit c61ef6b4e86f41f47c8c77de3b5fca3945a7c075 (HEAD -> master)
Author: Megha <[email protected]>

Revert "Added the monitoring script files"

This reverts commit eae84e7669af733ee6c1b854f2fcd9acfea9d4a3.

commit eae84e7669af733ee6c1b854f2fcd9acfea9d4a3
Author: Megha <[email protected]>

Added the monitoring script files

From the log, we can notice that a new commit has been created with the New ID c61ef6b4e86f41f47c8c77de3b5fca3945a7c075 to reverse the original commit with the ID eae84e7669af733ee6c1b854f2fcd9acfea9d4a3.

...

🐧 git-revert Command in Git | Explained


📈 36.69 Punkte
🐧 Linux Tipps

🕵️ Ikiwiki Git Revert erweiterte Rechte [CVE-2016-10026]


📈 28.73 Punkte
🕵️ Sicherheitslücken

🕵️ Ikiwiki Git Revert erweiterte Rechte [CVE-2016-10026]


📈 28.73 Punkte
🕵️ Sicherheitslücken

🔧 What is Git Revert


📈 28.73 Punkte
🔧 Programmierung

🔧 Git Revert: A Safe Way to Remove Faulty Commits


📈 28.73 Punkte
🔧 Programmierung

🔧 🔄 How to Revert a Commit in Git


📈 28.73 Punkte
🔧 Programmierung

🔧 Git revert commit – Come rimuovere l'ultimo commit fatto


📈 28.73 Punkte
🔧 Programmierung

🔧 Git Revert? Restore? Reset?


📈 28.73 Punkte
🔧 Programmierung

🔧 Time Traveling Through Your Repo: Git Reset vs. Revert


📈 28.73 Punkte
🔧 Programmierung

🔧 Git Revert: How to the complete guide


📈 28.73 Punkte
🔧 Programmierung

🐧 How to Revert a Range of Commits in Git


📈 28.73 Punkte
🐧 Linux Tipps

🐧 How to Revert Initial Git Commit?


📈 28.73 Punkte
🐧 Linux Tipps

🐧 What’s the Difference Between Git Revert, Checkout, and Reset?


📈 28.73 Punkte
🐧 Linux Tipps

🕵️ Ikiwiki Git Revert privilege escalation


📈 28.73 Punkte
🕵️ Sicherheitslücken

🔧 Ditch Git Checkout: Use Git Switch and Git Restore Instead


📈 23.87 Punkte
🔧 Programmierung

🔧 Restaurando e Alternando Branches com Git: Domine os Comandos git restore e git switch


📈 23.87 Punkte
🔧 Programmierung

🎥 Top Git Commands | Most Used Git Commands | Git Commands With Examples


📈 23.87 Punkte
🎥 Video | Youtube

🔧 git switch and git checkout – How to switch branches in git


📈 23.87 Punkte
🔧 Programmierung

🪟 How to revert to the previous classic version of Teams


📈 20.77 Punkte
🪟 Windows Tipps

📰 FBI Will Revert To Using Fax Machines, Snail Mail For FOIA Requests


📈 20.77 Punkte
📰 IT Security Nachrichten

📰 Microsoft tells Exchange admins to revert previously recommended antivirus exclusions


📈 20.77 Punkte
📰 IT Security Nachrichten

🐧 How can I Revert Uncommitted Changes Including Files and Folders?


📈 20.77 Punkte
🐧 Linux Tipps

📰 Gmail Will No Longer Allow Users To Revert Back To Its Old Design


📈 20.77 Punkte
📰 IT Security Nachrichten

📰 Unpreparedness forces many businesses to revert back to on-prem


📈 20.77 Punkte
📰 IT Security Nachrichten

🔧 Why is it impossible to revert vector to text?


📈 20.77 Punkte
🔧 Programmierung

📰 Firms could revert to analogue processes post-pandemic


📈 20.77 Punkte
📰 IT Security Nachrichten

🕵️ How-To Revert HP Printer Firmware Ban on 3rd-Party Toner Cartridges


📈 20.77 Punkte
🕵️ Reverse Engineering

📰 Car Dealerships In North America Revert To Pens and Paper After Cyberattacks


📈 20.77 Punkte
📰 IT Security Nachrichten

📰 Two Linux Kernels Revert Performance-Killing Spectre Patches


📈 20.77 Punkte
📰 IT Security Nachrichten

matomo