| 124 | | * Create a repository or a branch in an existing repository where SCDB will be stored |
| 125 | | * Checkout this repository/branch (`svn co`) |
| | 124 | * Create a repository or a branch in an existing repository where SCDB will be stored. The branch name must be `trunk` (e.g. `/Quattor/CDB/trunk`. |
| | 125 | * Checkout this repository/branch. For example : |
| | 126 | {{{ |
| | 127 | svn co http://svn.example.org/Quattor/CDB/trunk |
| | 128 | }}} |
| | 129 | * Configure the repository to ignore some files produced when compiling, using the following command : |
| | 130 | {{{ |
| | 131 | cat /tmp/ignore <<EOF |
| | 132 | .settings |
| | 133 | build |
| | 134 | build.saved |
| | 135 | deploy |
| | 136 | quattor.build.properties |
| | 137 | .project |
| | 138 | EOF |
| | 139 | svn propset svn:ignore -F /tmp/ignore . |
| | 140 | svn ci |
| | 141 | }}} |