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 ?
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
Old question, but I had a similar problem.
This is what I did. Check with
svn ls
and compare to
ls -1
Then
svn ls | xargs svn up
To do this recursively just add -R
svn ls -R | xargs svn up
Note that this will take a while if you have a big code base
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With