Create SVN Branch
Its always better to work on SVN branch rather than on main source trunk. This way you wont messup the original working version and still use repository for keeping track of your changes.Creating an svn branch is very easy. In your shell or terminal client, type:
# svn copy https://machine.yourdomain.net:9443/svn/MainProjectName/Subproject/trunk https://machine.yourdomain.net:9443/svn/MainProjectName/Subproject/branches/ChangeTask103 --username yourusername -m "change task 103"
To get a "working copy" of the latest source files from branch, use svn checkout with branch URL.
#svn checkout https://machine.yourdomain.net:9443/svn/MainProjectName/Subproject/branches/ChangeTask103 --username yourusername
No comments:
Post a Comment