git revert all changes to branch code example
Example 1: undo unstaged changes git
git checkout -- .
Example 2: git reset one file
git checkout HEAD -- my-file.txt
Example 3: git discard staged changes
git reset HEAD
git checkout .
git checkout -- .
git checkout HEAD -- my-file.txt
git reset HEAD
git checkout .