Creating and deleting branches in svn

It is assumed that your svn has the following structure:

|-- /branches
|-- /tags
|-- /trunk

To copy trunk to the branch

$ svn copy trunk branches/new-branch -m 'created a new branch'

To delete a branch

$ svn delete branches/new-branch -m 'deleted obsolete branch'