I’m trying to exclude all folders called __pycache__
. This folder occurs in multiple places. How do I exclude this?
I’ve read the docs and it’s not entirely clear to me if this is possible, or how to do this. Any help appreciated
I’m trying to exclude all folders called __pycache__
. This folder occurs in multiple places. How do I exclude this?
I’ve read the docs and it’s not entirely clear to me if this is possible, or how to do this. Any help appreciated
--exclude pycache
I guess that’s it ;). It should exclude it from all places regardless how deep.
Is it what you are looking for?
I think so, thanks It’s called
__pycache__
but I messed up the formatting above, which I’ll fix now.