I’m trying
svn add *.py --force
As the documentation suggests, but I know for a fact it’s missing files nested in deeper folders. Why?
Is there a standard way to do this with other unix commands too? */*.py will nab a few more files, but it’s kind of a pain in the butt to do this for every possible depth.
The
findcommand is the trick to dig out the files you want.And there’s about a million ways to do it, all of which are educational in their own right.