
git-revert
List of commands for git-revert:
-
git-revert:tldr:11f47 git-revert: Don't create new commits, just change the working tree.$ git revert -n ${0c01a9--9a1743}try on your machineexplain this command
-
git-revert:tldr:3252a git-revert: Revert the 5th last commit.$ git revert HEAD~${4}try on your machineexplain this command
-
git-revert:tldr:81f0b git-revert: Revert the most recent commit.$ git revert ${HEAD}try on your machineexplain this command