Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SVN : missing files in local copy

Tags:

eclipse

svn

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 ?

like image 787
Julius Avatar asked Nov 06 '09 16:11

Julius


2 Answers

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
like image 59
tangens Avatar answered Sep 18 '22 07:09

tangens


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

like image 37
Justin Hamade Avatar answered Sep 21 '22 07:09

Justin Hamade