问题
I was trying out SVN External
, what I want to do is have an external folder and copy over libraries from there into my Lib Folder.
I went to SVN Externals, and there added the lib folder and path to svn I checked out my Project and I got the below error
回答1:
In my experience some scenarios will leave folders or files included by use of svn:externals
in state the item has a Switched URL relative to the parent
.
This is most likely reason for your problem. You should be able to spot such elements using svn status
command, status "S", or TortoiseSVN Check For Modifications, status normal (s)
.
Simplest way to resolve this is selecting action Switch back to parent
from item's context menu in TortoiseSVN Check For Modifications
window. This action may result in deletion of file or folder from working copy, subsequent update will fetch new copy from repository.
来源:https://stackoverflow.com/questions/18651969/svn-externals-unexpected-state-issue