Version 6 (modified by peko, 17 years ago) (diff) |
---|
- Repository. You can download the repository from the external link: svn://asteasolutions.net:7963/sophie2 or the internal one: svn://10.10.117.11/sophie2. That is where the main line of development will be.
- The current sources for the Sophie-JR project are located in the trunk/ folder;
- The branches and tags are located in the branches/, tags/ folders;
- Reports and schedule documents can be found in the manage/ folder;
- Rules
- Submit is allowed only if there is no warnings or errors in the code. Also a comment must be provided when committing.
- Comments should be short and should give brief information what has been modified, added, etc. Adequate comments can save much time in debugging and fixing bugs, so pay attention to that.
- Useful stuff
- Reverting To a Previous Revision. You can revert files or folders or the entire project to a previous revision of the repository using merging:
Example:
svn merge -r BASE:15
svn will revert the working copy of the project to revision 15. The changes will only take place on the working copy and will not be committed to the repository until you tell it to do so:
svn commit -m 'Reverting repository to r15.'