Mark, Sorry to take so long to reply...
On 22 October 2011 00:39, Mark Phippard <markp...@gmail.com> wrote: > Can you make a little diagram of what your Eclipse workspace looks > like? For example, one of mine looks like this: > > /workspace > |- Project1 > |-|-.svn > |- Project2 > |-|-.svn > > My Eclipse workspace was a directory called 'networkmodel', with projects from several different repositories checked out inside it. Here is an example of some of the files inside this 'networkmodel' directory *before* I did the svn update command: .metadata .svn (top-level .svn folder from svn checkout of my main 'networkmodel' repository) # this is one of the projects from my main 'networkmodel' repository MasonPI/ MasonPI/.classpath MasonPI/.project MasonPI/.svn MasonPI/src ... # this is another of the projects from my main 'networkmodel' repository au.edu.qut.renewables.networkmodel au.edu.qut.renewables.networkmodel/.classpath au.edu.qut.renewables.networkmodel/.project au.edu.qut.renewables.networkmodel/.svn (from my main 'networkmodel' repository) au.edu.qut.renewables.networkmodel/src au.edu.qut.renewables.networkmodel/test ... # a project from another SVN repository: http://svn.apache.org/repos/asf/commons/sandbox/csv/trunk commons-csv commons-csv/.classpath commons-csv/.project commons-csv/.svn commons-csv/LICENSE.txt commons-csv/NOTICE.txt commons-csv/bin commons-csv/checkstyle.xml commons-csv/pom.xml commons-csv/src commons-csv/target # a project that has no associated SVN repository. supercsv_1.52 supercsv_1.52/.classpath supercsv_1.52/.project supercsv_1.52/LICENSE.txt supercsv_1.52/bin supercsv_1.52/src supercsv_1.52/test ... So the commands that created this structure were something like: # first command will create networkmodel directory and check out a few projects # into it, such as MasonPI and au.edu.qut.renewables.networkmodel... svn co https://..../networkmodel/trunk networkmodel cd networkmodel svn co http://svn.apache.org/repos/asf/commons/sandbox/csv/trunk commons-csv <create Eclipse workspace here... and import all projects.> I haven't had any problems since I changed back to svn 1.6: $ svn --version svn, version 1.6.17 (r1128011) compiled Jun 2 2011, 10:39:28 $ uname -a CYGWIN_NT-6.1-WOW64 RWS034 1.7.9(0.237/5/3) 2011-03-29 10:10 i686 Cygwin Thanks Mark