Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The deletion will occur when you commit.

Deleting Files

To delete files use this command:

svn rm /path/to/file

You also need to perform a commit to delete the files in the repository and not just the local copy.

Commit changes

This command is used to commit your local changes to the repository:

...

After a merge, the changes are made to the local copy and must still be committed, using the usual commit command.

You can also use merge to undo commits (or series of commits).

See for example:

http://stackoverflow.com/questions/13330011/how-to-revert-an-svn-commit

Make a branch

Warning
titleAdvanced Command

Making branches is an advanced operation.  Ask a knowledgeable individual for advice before doing this for the first time.  After branching to make major changes, make sure to change your IDE / editor to use the branch instead of the trunk.

...