svn update
command.
svn add
, svn delete
,
svn copy
, and svn move
commands handle those sorts of structural changes within the working copy.
svn status
and svn diff
commands are critical to reviewing the changes you've made in your working copy.
svn revert
command restores a file or directory to its unmodified state.
svn update
command is the way to do this.
If this results in local conflicts, you'll need to resolve those using the svn resolve
command.
svn commit
command transmits your changes to the repository where, if they are accepted, they create the newest versions of all the things you modified. Now others can see your work, too!
svn update
to bring your working copy into sync with the latest revision in the repository:
$ svn update Updating '.': U foo.c U bar.c Updated to revision 2. $