git reset head file code example
Example 1: git reset head
sudo git reset --hard Head
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 file reset to head
git checkout HEAD -- my-file.txt