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!
As @namxee wrote (andThird command from VisualSVN Manual page will help (using three paramaters for multi-SRC checkout into common base) with correct syntaxsvn help coremind) 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:\srcwhich will give
Codeandlinessubdirs as two independent Working Copies inside d:\src`/svn/Codeand/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-placement