Reputation: 23
is there any way how to do multiple imports into SVN repository? I.e. I want to import first file a/b/file1.txt and then file a/b/file2.txt. First import is OK, but second one throws "directory a already exists" error.
Is there any way how to accomplish this multiple import?
Upvotes: 2
Views: 1768
Reputation: 6316
AFAIK, there is no such thing as 'multiple import'. Second one you be an add and a commit / check-in not an import.
Note that as the documentation mentioned you still need to checkout:
After importing data, note that the original tree is not under version control. To start working, you still need to svn checkout a fresh working copy of the tree.
Upvotes: 2