Reputation: 13033
I need to checkout two paths in two directories. Here is what I've tried before:
svn co https://localhost:8443/svn/Code "d:\src" https://localhost:8443/svn/lines "d:\src\bin"
and similar commands, but only first path is checked out to the second directory with an error svn: E125002: >D:/src< scheint keine URL zu sein which means >D:/src< doesn't look like URL.
I've red the syntax here but could not get it working. Please provide me with working example.
Thank You!
Upvotes: 0
Views: 1299
Reputation: 97282
svn help co
remind) you can't use more than two parameters (SRC and TGT) in checkoutsvn co https://localhost:8443/svn/Code https://localhost:8443/svn/lines d:\src
which will give Code
and lines
subdirs as two independent Working Copies inside d:\src`
/svn/Code
and /svn/lines
) into parent|child Working Copies (d:\src
+ d:\src\bin
), guaranteed to get Problems, when you'll try to commit (or successfully commit, I'm too lazy to predicts, where exactly your racks are) changes to Repo. Maybe you can describe your bisiness task for such exotic WC-placementUpvotes: 1
Reputation: 233
it seems to be impossible to chechout each directories.. by svn checkout command.
you have to command with only one line i recommed '&'
svn co https://localhost:8443/svn/Code "d:\src" & svn co https://localhost:8443/svn/lines "d:\src\bin"
it works well in linux OS
i hope it helps.
Upvotes: 1