Setup the working copy of the repository
svn checkout
First navigate to the root of your working copy.
svn status
This will list any files you’ve added, deleted or modified.
svn add
for any files you are adding to the repository
svn status
to make sure all files are added (no ?s next to name)
svn commit -m ‘
The changes will commit to the repository.
svn update
will update your working copy with changes others have made