Answers for "git command to remove unstaged changes"

1

delete all unstaged files git

#For all unstaged files in current working directory use:
git checkout -- .
#For a specific file use:
git checkout -- path/to/file/to/revert

# delete all unstaged files
git clean -df

#discrard all unstaged files
git stash save --keep-index --include-untracked
Posted by: Guest on March-10-2022
0

what to do with unstaged changes after reset

git rm --cached -r .
Posted by: Guest on July-28-2020

Code answers related to "git command to remove unstaged changes"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language