how to check output of changed code in git repository code example
Example 1: remove file from stage git
git rm --cached <file>
Example 2: remove frmo staging git
git reset HEAD -- filename
git rm --cached <file>
git reset HEAD -- filename