unstage all git code example
Example 1: how to remove file changes in git
git clean -df
git checkout -- .
Example 2: git unstage file for commit
git reset myfilename.txt
Example 3: undo unstaged changes git
git checkout -- .
git clean -df
git checkout -- .
git reset myfilename.txt
git checkout -- .