git reset undo code example
Example 1: how to revert a commit
git reset --soft HEAD@{1}
git reset --hard HEAD@{1}
git push --force origin master
Example 2: undo git reset HEAD~1
git reset HEAD@{1}
Example 3: how to revert a git revert
git revert <commitHashOfTheRevert>
Example 4: revert or reset git
git reset Commit-level Discard commits in a private branch or throw away uncommited changes
git reset File-level Unstage a file
git checkout Commit-level Switch between branches or inspect old snapshots
git checkout File-level Discard changes in the working directory
git revert Commit-level Undo commits in a public branch
git revert File-level (N/A)