I\'ve been working on code checked out from the development line and discovered that the changes made might be breaking changes and need to be moved to an experimental branch be
You should create a branch from a known sourceURL
(this would be your 'development line' you mentioned in the question) first:
svn copy sourceURL branchURL
Then, switch to that branch:
svn switch branchURL
And commit your changes:
svn commit
You can create a new branch directly from your working directory and switch the working directory to that branch.
The commands are
svn copy
and svn switch
You could do it in the TortoiseSVN like that:
Enjoy!