Answers for "git get list of unstaged files"

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
4

git discard unstaged files

git stash save --keep-index --include-untracked
Posted by: Guest on June-02-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language