Changes between Version 3 and Version 4 of PLATFORM_STANDARDS_REPOSITORY
- Timestamp:
- 09/23/08 16:50:52 (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
PLATFORM_STANDARDS_REPOSITORY
v3 v4 1 1 [[BackLinksMenu]] 2 3 * how to work with the repository and repository structure.4 * when submit is allowed.5 * what comments should contain.6 2 7 3 1. 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. … … 13 9 a. 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. 14 10 3. Useful stuff 15 a. 11 a. Reverting To a Previous Revision. You can revert files or folders or the entire project to a previous revision of the repository using merging: 12 13 Example: 14 {{{ 15 svn merge -r BASE:15 16 }}} 17 svn will revert the working copy of the path or file 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. 18