On Fri, Oct 9, 2015 at 6:08 AM, Joshua Stokes <joshua.sto...@icloud.com>
wrote:

> Hi
>
> Is there an available script to remove file created by either using the
> Python module or by using git?
>

​There's always this nugget:

git clean -fxd

This will get rid of *all* untracked files in the current directory of a
git repo (and recursively all subdirectories).  You can optionally specify
a directory at the end of that command.

Careful with this sledgehammer, though, as it will also trash any untracked
source code files as well (and you may never get them back).

HTH,
Jason
-- 
https://mail.python.org/mailman/listinfo/python-list

Reply via email to