0 votes
in Git by
Explain the difference between reverting and resetting.

1 Answer

0 votes
by
Git reset is a powerful command that is used to undo local changes to the state of a Git repository. Git reset operates on “The Three Trees of Git” which are, Commit History ( HEAD ), the Staging Index, and the Working Directory.

Revert command in Git creates a new commit that undoes the changes from the previous commit. This command adds a new history to the project. It does not modify the existing history.

Related questions

0 votes
asked Feb 13, 2022 in Git by rajeshsharma
...