unstage a file 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 file reset to head
git checkout HEAD -- my-file.txt
Example 3: git unstage file\
# unstage file before commit
git rm --cached <file_name>
Example 4: Why are there two ways to unstage a file in Git?
git rm --cached <filePath>
Example 5: git unstage a file
$ git reset -- README