7

In subclipse (the svn plugin on Eclipse) how do I update my code to match the repository as if I had used the --force command line option? I need to overwrite everything, even the changed stuff. Team->Update adds notes about mismatches in files, breaking the code. Thanks!

Nate Glenn
  • 6,455
  • 8
  • 52
  • 95

1 Answers1

14

Try synchronising first, and then use override-and-update.

Team -> Synchronize with repository, then in Team Synchronizing perspective choose, Override and Update

Adeel Ansari
  • 39,541
  • 12
  • 93
  • 133
  • 2
    Perfect! Thanks. That's right-click file, `Team`-> `Synchronize with repository`, in Team perspective right-click file, `Override and Update`. – Nate Glenn May 13 '11 at 04:11