Is their a way to add all files that arent present with svn example.
If i try to run
svn add *
i get this error
svn: warning: 'css' is already under version control
svn: warning: 'images' is already under version control
svn: warning: 'js' is already under version control
svn: warning: 'readme.txt' is already under version control
svn: warning: 's3audible.php' is already under version control
svn: warning: 'skin' is already under version control
so this means i have to add all new files individually i.e
test:trunk sam$ svn add js/colorpicker.js
A js/colorpicker.js
test:trunk sam$ svn add js/layout.js
A js/layout.js
test:trunk sam$ svn add css/colorpicker.css
A css/colorpicker.css
test:trunk sam$ svn add css/layout.css
A css/layout.css
etc etc
I want to just add all
any suggestions?
You can try with –force option. Passing the –force option makes svn add recurse into versioned directories:
I hope it helps.