unstaged 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: git delete unstaged files

git clean -df

Example 4: undo unstaged changes git

git checkout -- .

Example 5: how to unstage a commit

git reset HEAD~

Example 6: revert unstaged changes git

git checkout -- path/to/file/to/revert

Tags:

Misc Example