Answers for "how to remove untracked files in git"

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

git discard untracked

# if you want to clean directories as well add -d
git clean -fd
Posted by: Guest on May-06-2021
1

how to remove untracked files in git

git clean -fd
Posted by: Guest on June-14-2020
4

how to remove untracked files in git

git clean -f
Posted by: Guest on December-02-2019
0

git abandon untracked files

git clean -i
Posted by: Guest on November-02-2020

Code answers related to "how to remove untracked files in git"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language