Answers for "how to remove changes not staged for commit files in git"

5

how to remove file changes in git

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

how to avoid some files changes to not come in git status

git update-index --assume-unchanged <file>
Posted by: Guest on June-04-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language