0

Whenever i do an svn up it updates all files in the main directory but skips all files in sub directories.

Also it fails to add new files, thus if there is a new file "newFile", doing an

svn up 

does not add the file but

svn up newFile

adds the file correctly. How do i fix my svn ?

Ankit Rustagi
  • 5,539
  • 12
  • 39
  • 70

1 Answers1

0

You can make SVN update non-recursively by using this command:

svn update --depth=files

The --depth argument can take the following parameters: empty, files, immediates or infinity

Migol
  • 8,161
  • 8
  • 47
  • 69
user3283976
  • 179
  • 4