Answers for "how to delete unstaged files that were recently added locally"

14

git remove untracked files

# Print out the list of files which will be removed (dry run)
git clean -n

# Interactive and you will get a quick overview of what is 
# going to be deleted offering you the possibility to include/exclude 
# the affected files
git clean -i

# To remove files, run
git clean -f

# To remove directories, run 
git clean -fd

# To remove ignored files, run 
git clean -fX

# To remove ignored and non-ignored files, run 
git clean -fx
Posted by: Guest on July-23-2020
15

git remove untracked files

git clean -fdx
Posted by: Guest on March-18-2020
2

how to delete unstaged files that were recently added locally

To see what files will be removed:
git clean -n <optional file_name/dir>

To actually delete those files:
git clean -f <optional file_name/dir>
Posted by: Guest on July-26-2020

Code answers related to "how to delete unstaged files that were recently added locally"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language