How do you delete untracked local files from your current working tree?
Normal git clean command doesn't remove untracked files with my git version 2.9.0.windows.1.
git clean
git version 2.9.0.windows.1
$ git clean -fdx # doesn't remove untracked files $ git clean -fdx * # Append star then it works!