On Apr 14, 2008, at 12:04 PM, Reynier Perez Mira wrote:
>>>> On Apr 14, 2008, at 10:28 AM, Reynier Perez Mira wrote:
>>>>>
>>>>> org.tigris.subversion.javahl.ClientException: Path is not a
>>>>> working copy directory
>>>>> svn: 'X:\www\gestionTrunk\plugins\sfGuardPlugin\lib\model' is
>>>>> not a working copy
>>>>> The system cannot find the path specified.
>>>>> svn: Can't open file 'X:\www\gestionTrunk\plugins\sfGuardPlugin
>>>>> \lib\model\.svn\entries': The system cannot find the path
>>>>> specified.
>> All you can really do is checkout again. You can set aside
>> the current code and then copy it back over the checked out files.
>
> And how? Exists any guide for do a "checkout" without sharing my
> project? Because any time I share a new project I need to create a
> new folder in SVN and I don't want this. I want to connect without
> create this new folder and then switch to another branch/tag. Any
> guide?
Move the existing broken "model" directory aside:
cd X:\www\gestionTrunk\plugins\sfGuardPlugin\lib
mv model model-bak
Note: I don't know DOS command line commands, so if "cd" and "mv" are
not appropriate, please use whatever commands are appropriate in DOS
to change directories and move files.
After moving the broken "model" directory out of the way, retrieve a
fixed "model" directory from the repository:
svn up model
Now you have "model" (with no changes) and "model-bak" (with your
changes). Manually move any changed files from "model-bak" to
"model". Use "svn status" to verify that your changes are showing up
correctly. Once you're done, you can delete "model-bak".
---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe_at_subversion.tigris.org
For additional commands, e-mail: users-help_at_subversion.tigris.org
Received on 2008-04-14 22:50:55 CEST