Why svn update discard local changes?

532 views Asked by At

I've found that some of my local changes are gone after

svn up

Why could it happen ?

1

There are 1 answers

0
bahrep On BEST ANSWER

The svn update command never discards or removes local changes made in your working copy. Maybe you ran the svn revert command instead? Or is there a conflict? What does svn status show?

Updating your working copy fetches the latest changes from your repository and does not remove your local modifications. If the incoming changes conflict with your local ones, there will be a conflict. SVN offers you to resolve this conflict interactively or manually.