symlink - After adding a symbolic link in a svn repository I keep receiving an error inside of that directory -
I have created a symbolic link from
I / www / dir2 / to / home / dir2 / I added it to the repository (svn Add / Www / dir2 /) Now if I go to that directory, and try to do something with svn there, I get a "svn: warning:". Does not have a working copy "error.
If I try to add a subdirectory (svn add / www / dir2 / dir5) then I get an error:
svn: 'dir2' is not a working copy < Svn: Can not open 'dir2 / .svn / entries' file: There is no such file or directory, I tried to make the directory extra and it worked properly
From the log:
change path:
a / www / dir2
svn pl dir2 /
properties on 'dir2':
svn: special
anyone Thank you!
Subversion does not follow symbolic links when a symlink If it is prepared, then it is stored in the database as a regular file with the svn: special
property set. See for more information.
If you want to add the directory to the repository, you can transfer it to a copy of your work (Not symlink) and then add it.
Comments
Post a Comment