Quick tip: If you need to add files that are not currently in the repository to SVN, just run the following command from the directory:
$ svn st | grep ^? | cut -b7- | xargs svn add
Of course, you’ll need to commit the files:
$ svn commit
-Chris
Quick tip: If you need to add files that are not currently in the repository to SVN, just run the following command from the directory:
$ svn st | grep ^? | cut -b7- | xargs svn add
Of course, you’ll need to commit the files:
$ svn commit
-Chris
that is very nice Chris – works simply in distant folders too:
DEVFOLDER=’/var/local/www/etc/etc’
svn st $DEVFOLDER | grep ^? | cut -b7- | xargs svn add