So, let's say I have a code check that I used --ignore-externals initially. One of the directories has several large external elements.
After you checked my sparse copy, is there a way to get only one of these external ones? As far as I can tell, all I can do is svn up . and immediately extract everything external. --depth doesn't seem to work in this case, nor does svn up external_dir/ , since it does not exist yet. I even tried to fake it with mkdir external_dir/; svn up external_dir/ mkdir external_dir/; svn up external_dir/ , although I really did not expect it to work.
So, is it possible to get / update only one external, and not everything in the directory if it was originally ignored?
source share