Obtaining a Working Copy Source Code from Subversion
To check out the main trunk execute the following:
svn co http://trac.vtiger.com/svn/vtiger/vtigercrm/trunk
To check out a 5.x release tag:
svn co http://trac.vtiger.com/svn/vtiger/vtigercrm/tags/5.0.3
To check out the 4.x maintenance branch:
svn co http://trac.vtiger.com/svn/vtiger/vtigercrm/branches/4.2
To check out a 4.x release tag:
svn co http://trac.vtiger.com/svn/vtiger/vtigercrm/tags/4.2.4
Now you will have a working SVN base that you can make changes to.
The following commands will help you get started:
- list the status of any pending changes in your local copy
svn status
- update your local copy from the server
svn update
- commit your changes to the server (require developer username/password)
svn commit
