unstage changes git code example
Example 1: git discard local changes
# Discarding local changes (permanently) to a file:
git checkout -- <file>
# Discard all local changes to all files permanently:
git reset --hard
Example 2: how to unstage changes in git
#unstage a single file
git rm --cached <filePath>
#unstage all staged files
git reset
Example 3: how to unstage a commit
git reset HEAD~
Example 4: unstage staged files git
git reset HEAD file_path
Example 5: revert unstaged changes git
git checkout -- path/to/file/to/revert
Example 6: git delete changes
git clean -df
git checkout -- .