close
Warning:
Can't synchronize with repository "(default)" (/var/svn/tolp does not appear to be a Subversion repository.). Look in the Trac log for more information.
- Timestamp:
-
Feb 25, 2009, 2:59:33 PM (16 years ago)
- Author:
-
Víctor de Buen Remiro
- Comment:
-
--
Legend:
- Unmodified
- Added
- Removed
- Modified
-
v3
|
v4
|
|
28 | 28 | The recommended interface for Linux is [http://rapidsvn.tigris.org/ RapidSVN] using [http://www.tol-project.org:8081 meld] as diff tool. |
29 | 29 | |
30 | | === Creating a branch for official release === |
| 30 | === Starting === |
| 31 | |
| 32 | |
| 33 | === Creating a branch === |
31 | 34 | When trunk version is released as Official version a branch must be created to allow parallel evolution. |
| 35 | Another posible use of branches is trying new features. |
32 | 36 | |
33 | | 1. Moves to the tolp root of your local copy |
34 | | 1. Makes the remote branch as a copy of current trunk, for example |
| 37 | 1. Move to the tolp root of your local copy |
| 38 | 1. Update remote changes |
| 39 | 1. Comit all local changes |
| 40 | 1. Make the remote branch as a copy of current trunk, for example |
35 | 41 | {{{ |
36 | 42 | svn copy https://www.tol-project.org/svn/tolp/trunk \ |
… |
… |
|
44 | 50 | }}} |
45 | 51 | |
| 52 | === Recovering a trying branch to trunk === |
| 53 | |
| 54 | 1. Move to the tolp root of your local copy |
| 55 | 1. Update remote changes in both trunk and trying branch |
| 56 | 1. Comit all local changes in both trunk and trying branch |
| 57 | 1. Merge changes from in both trying branch to trunk |
| 58 | {{{ |
| 59 | svn merge https://www.tol-project.org/svn/tolp/branches/my_trying_branch https://www.tol-project.org/svn/tolp/trunk trunk |
| 60 | }} |
| 61 | 1. If there is a conflict you will be asked in order to select one of two versions or pospone the decision. So you must monitorice the console from time to time. |
| 62 | |