views:

351

answers:

4

Hi,

I use Eclipse Subversion client to checkout my project from a svn repository. My coworkers has committed 2 new files which i can see on the svn remote repository but I can't get them when i update from the head.
The 2 files are in the trunk, like me.

Someone have an idea ?

A: 

Perhaps you have a sparse checkout? Then you could try do to an explicit update to the files:

svn update path/to/missing/file.txt
tangens
A: 

Get those two files included if you create a new working copy?

jdecuyper
A: 

You can also explicitly update to a revision using '-r' and then the current revision number:

svn update -r 1234 path/to/missing/file.txt
fuzzygroove
A: 

I switched to the HEAD and set the recursive options to full in the Eclispe Team menu. And now it works :-) Curious I was on the head before.

Julius