Cómo eliminar archivos no estados que se agregaron recientemente localmente
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>
Vivacious Vole