aneuryzm
aneuryzm

Reputation: 64864

A simple question about SVN

When I use SVN client, should I use as local repository:

The reason I'm asking this is that I often need to update my local repository before to submit changes.

When I need to update it don't I overwrite my local changes ? thanks

Upvotes: 0

Views: 66

Answers (2)

Eugene Smith
Eugene Smith

Reputation: 9398

Don't create any intermediate copies. SVN will merge your changes with any remote changes other repository users made since the last update.

Upvotes: 1

zigdon
zigdon

Reputation: 15073

Use the files you're editing - if there's a conflict, you're going to have to resolve it anyway, and SVN will help you do so.

Upvotes: 1

Related Questions