I am using an ORM which generates large amounts of files from a CLI. Is there an easy way to run the svn add on all files within a directory which appear as ? when I run svn status?
Edit These files exist in a directory tree so adding * for one directory will not work.
you can just do an
svn add path/to/dir/*you’ll get warning about anything already in version control but it will add everything that isn’t.