Git remove arquivos não rastreados
git clean -fdx
Outrageous Opossum
git clean -fdx
# if you want to clean directories as well add -d
git clean -fd
git clean -fd
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>
git clean -f
# 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