-1

I am trying to update my repo, using svn update command line tool.

But it won't download newly added or missing files.

Any ideas?

bahrep
  • 29,961
  • 12
  • 103
  • 150
nydiann
  • 111
  • 3
  • 6

1 Answers1

0

Read docs!

Why do you assume that you svn update a repository?

svn update brings changes from the repository into your working copy.

So you update your working copy, not a repository.

Working copy?

Working copy is a local checkout of a specific repository location (e.g. branch, trunk, whatever). So even if you know that other developers committed to the repository it could be that they committed to another location. You can always issues 'svn log' command to check what's new in a repository.

A working copy is, quite literally, a local copy of a particular version of a user's VCS-managed data upon which that user is free to work. Working copies appear to other software just as any other local directory full of files, so those programs don't have to be “version-control-aware” in order to read from and write to that data. The task of managing the working copy and communicating changes made to its contents to and from the repository falls squarely to the version control system's client software.

Repository?

Repository is the place where all versioned data and history is kept safe.

At the core of the version control system is a repository, which is the central store of that system's data.

bahrep
  • 29,961
  • 12
  • 103
  • 150