Answers for "how to remove changes git stage files"

5

how to remove file changes in git

git clean -df
git checkout -- .
Posted by: Guest on May-23-2020
-1

remove file from stage git

git rm --cached <file>
Posted by: Guest on March-23-2020

Browse Popular Code Answers by Language