git undo change code example
Example 1: how to undo a modified file in git
# If you want to revert the changes only in current working directory
git checkout -- .
# discard anything (note: you have to be in the directory
# where all of the changes are located)
# or you can use the command on line 9, you can discard anything
# on the repo
git checkout -- *
git checkout -- :/
# or if you check the git status message after modifying a file
# there is this command
git restore <file>
Example 2: undo git
# KEEP CHANGES
git reset --soft HEAD~1
# REMOVE CHANGES
git reset --hard HEAD~1
Example 3: git reset one file
git checkout HEAD -- my-file.txt
Example 4: git discard staged changes
git reset HEAD
git checkout .