Subversion » History » Version 2
Amber Herold, 12/11/2012 01:37 PM
1 | 1 | Amber Herold | h1. Subversion |
---|---|---|---|
2 | |||
3 | 2 | Amber Herold | h3. How to check out the code |
4 | |||
5 | <pre> |
||
6 | svn co http://emg.nysbc.org/svn/myami/trunk myami/ |
||
7 | </pre> |
||
8 | |||
9 | 1 | Amber Herold | h3. How to create a new branch in svn |
10 | |||
11 | "Information on branching.":http://svnbook.red-bean.com/en/1.1/ch04s02.html#svn-ch-4-sect-2.1 |
||
12 | |||
13 | # Before creating the branch, you need to update "myamiweb/xml/projectDefaultValues.xml":http://emg.nysbc.org/projects/appion/repository/entry/trunk/myamiweb/xml/projectDefaultValues.xml which holds the version number. |
||
14 | The version number is stored in the database at installation time. |
||
15 | |
||
16 | # Create a new branch: |
||
17 | <pre> |
||
18 | $ svn copy http://emg.nysbc.org/svn/myami/trunk http://emg.nysbc.org/svn/myami/branches/myami-2.1 -m "Creating a branch for myami 2.1" |
||
19 | |||
20 | Committed revision 14869. |
||
21 | |||
22 | </pre> |
||
23 | |
||
24 | # If this is a release branch, ask Christopher to make sure only a couple of people are allowed to check in changes to this branch. |