Git Revert - Visualised

Опубликовано: 11 Март 2026
на канале: A shot of code
3,900
100

In this git tutorial we look at the Revert command. Now on first inspection you might think this command will move back to a previous commit, but that is actually implemented by the git Reset command. Get revert is a little different in that it simply removes the changes associated with a commit. Once it has undone the changes from the commit a new commit is created. So different and safer than Git reset as there is no chance to permanently lose data.

00:00 Intro
01:30 Setup example
03:20 Perform Revert
04:40 Visual Tree of Result