OK, so the solution to remove untracked files is:
- Run
git clean --dry-run
. It just tells you what will be removed. Do it because cleaning is a dangerous command. - Run
git clean --force
to eventually remove your untracked files.
OK, so the solution to remove untracked files is:
git clean --dry-run
. It just tells you what will be removed. Do it because cleaning is a dangerous command.git clean --force
to eventually remove your untracked files.