|
|
|
CONTACT: Phone: 702-233-BITS(2487) Fax: 702-243-BITS(2487) |
|
SVN add for all un-added files (0 viewing)
Favoured: 0
|
|
|
TOPIC: SVN add for all un-added files
|
|
|
|
SVN add for all un-added files 6 Months ago
|
Karma: 0  
|
| Code: : | svn status | grep "^\?" | awk '{print $2}' |
xargs svn add
|
And much less pretty, but for files with spaces in them:
| Code: : | svn status | grep "^\?" | sed -e 's/? *//' |
sed -e 's/ /\\ /g' | xargs svn add
|
from http://lukewarmtapioca.com/2005/6/1/adding-all-new-files-with-svn
|
|
|
|
|
|
|
Last Edit: 2008/01/22 15:56 By brookh.
|
|
|
The administrator has disabled public write access. |
|
|
|