Changes between Version 4 and Version 5 of PLATFORM_STANDARDS_REPOSITORY
- Timestamp:
- 09/23/08 16:53:36 (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
PLATFORM_STANDARDS_REPOSITORY
v4 v5 12 12 13 13 Example: 14 14 15 {{{ 15 16 svn merge -r BASE:15 16 17 }}} 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 18 19 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: 20 21 {{{ 22 svn commit -m 'Reverting repository to r15.' 23 }}}