Commit uploads your changes on the CVS / SVN server, and Update overwrites the files on your localhost with the ones on the server.
Subversion Branching Strategies Subversion branches (SVN branches) allow your team to work on multiple versions of your code simultaneously. Developers can test out new features without impacting the rest of development with errors and bugs. SVN's “branch” directory runs parallel to the “trunk” directory.
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 could do it in the TortoiseSVN like that:
Enjoy!
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
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With