Create a directory in your working copy:
$ svn mkdir newdir A newdir
$ svn mkdir -m "Making a new dir." http://svn.red-bean.com/repos/newdir Committed revision 26.
From the directory containing the commonsproj/ directory, issue the svn import command. Example (all on one line!):svn import commonsproj svn+ssh://mylogin@svn.berkeley.edu/svn/berkeley/projects/commons/my/new/project/path -m "original commit"If you want create branch from trunk or tagsvn copy svn+ssh://host.example.com/repos/project/trunk \ svn+ssh://host.example.com/repos/project/branches/NAME_OF_BRANCH \ -m "Creating a branch of project"DELETE: svn delete PATHsvn delete URL1) Items specified by PATH are scheduled for deletion upon next commit.2) Files which are not committed immediately removed from the working copy unless the –-keep-local option is given.3) The command will not remove any un-versioned or modified items; use the – force option to override this behavior.4) Items specified by URL are deleted from the repository via an immediate commit. Multiple URLs are committed automatically.$ svn delete http://my.sp.com/svn/sp/trunk/SPFV-Api -m"to re-fresh"$ svn delete myFileD myFilesvn commit –m”deleted files”Deleting myFileCommitted …………………………$ svn delete - - force myfile
