On Thu, Apr 2, 2009 at 3:58 PM, Robert Kosara <[email protected]> wrote: > > I can > import it into the repository and then check it out again, but isn't > there a more direct way of doing this?
Another thing you can do is create an empty directory in the repository where you want the local files to reside, and then checkout that empty directory into the same directory as the unversioned files. Then add everything there, and commit. It is essentially importing and checking out except in reverse. Unfortunately, the last time I checked, Versions does not support checking out an empty directory on a pre-existant directory, so you have to do it from the command line. cd path/to/wc svn co reposerver/repo/path/to/empty/dir . svn add * svn ci -m "Import and checkout in one go" -Ray --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Versions" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/versions?hl=en -~----------~----~----~----~------~----~------~--~---
