How do you delete untracked local files from your current working tree?
Clean out git repository and all submodules recursively The following command will clean out the current git repository and all its submodules recursively: (git clean -d -x -f && git submodule foreach --recursive git clean -d -x -f)
The following command will clean out the current git repository and all its submodules recursively:
(git clean -d -x -f && git submodule foreach --recursive git clean -d -x -f)