This isn't really a Capistrano question, but... For new files, you need to do:
svn add file_name If you added a lot of files, you can do it recursively on a directory like: svn add --force directory_name Taken to the logical extreme, you can add all the new files via: svn add --force . I recommend reading the Pragmatic Version Control with Subversion book at http://www.pragmaticprogrammer.com/titles/svn/ and the online book Version Control with Subversion at http://svnbook.red-bean.com/ Luis http://www.luisdelarosa.com On Apr 2, 2007, at 9:03 PM, Nick wrote: > > Dear all, > > I setup my server and capistrano with the following tutorial: > http://wiki.slicehost.com/doku.php? > id=automated_rails_install_and_deployment_with_deprec_capistrano > > The svn commit command works fine for files I update. However, it > never commits new files I created. It just does not see them. Is there > a command I'm not seeing ? > > Thanks, > > Nick, > > > > --~--~---------~--~----~------------~-------~--~----~ To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/capistrano -~----------~----~----~----~------~----~------~--~---
