Answers for "delete all uncommitted changes git"

C
0

how to remove all uncommitted changes in git

git checkout [some_dir|file.txt]
Posted by: Guest on August-03-2021
2

git remove all uncommitted changes

git add . 
git stash 
git stash drop
git clean -fdx
Posted by: Guest on November-11-2021

Code answers related to "C"

Browse Popular Code Answers by Language