Development tips, help, and suggestions for building performant websites
Subversion – Add / Remove Multiple Files at same Time
Working within frameworks like Symfony you may find yourself having to add/remove multiple files at a time (adding a new module) to/from a symfony repository. Instead of doing per file, use one of the following commands:
svn remove $(svn status | grep '^\!' | sed 's/^\! *//' | xargs) #remove multiple files svn add $(svn status | grep '^\?' | sed 's/^\? *//' | xargs) #add multiple files

