discard 1 line git code example
Example 1: how to unstage changes in git
#unstage a single file
git rm --cached <filePath>
#unstage all staged files
git reset
Example 2: git discard unstaged files
git stash save --keep-index --include-untracked