Answers for "removing unstaged files from github"

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
1

git delete unstaged files

git clean -df
Posted by: Guest on October-01-2020

Code answers related to "removing unstaged files from github"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language