Table of Contents

About

Svn update is recursive by default.

Management

Update by loosing the local change

  • Update will not loose your local changes. You need to revert them
svn status
# Revert the change for one file
svn revert <path>
# Revert the change for all files
svn revert -R <path>
  • Then update of the other way around
svn update