| 1 | === Site Update Notice === |
---|
| 2 | '''Note:''' ''The path has changed for all Subversion repositories as of May, 2005. There is no more /svn/ in the path of the URL before /projects/. Please update your bookmarks accordingly.'' |
---|
| 3 | |
---|
| 4 | Also, if you have any working copies on your local development PC, follow these steps to switch to the new SVN repos location: |
---|
| 5 | |
---|
| 6 | These instructions are for the SVN command-line client and are for a Unix/Linux type system. I imagine the command-line tool would act the same on Windows. |
---|
| 7 | * Move into the folder/directory of your working copy and see what's going on with 'svn info'. |
---|
| 8 | {{{ |
---|
| 9 | ? cd /home/brad/dev/d/bindings |
---|
| 10 | ? svn info |
---|
| 11 | Path: . |
---|
| 12 | URL: http://svn.dsource.org/svn/projects/bindings/trunk |
---|
| 13 | Repository UUID: e3080b08-b6e0-0310-b0a6-cbd5e3aa05fd |
---|
| 14 | Revision: 4 |
---|
| 15 | Node Kind: directory |
---|
| 16 | Schedule: normal |
---|
| 17 | }}} |
---|
| 18 | * Use 'svn switch' command with --relocate flag to change URL: |
---|
| 19 | {{{ |
---|
| 20 | ? svn sw --relocate http://svn.dsource.org/svn/projects/bindings/trunk \ |
---|
| 21 | http://svn.dsource.org/projects/bindings/trunk |
---|
| 22 | Authentication realm: <http://svn.dsource.org:80> dsource-bindings |
---|
| 23 | Password for 'brad': |
---|
| 24 | }}} |
---|
| 25 | * Operations should be normal now. For example, to update your repos to the latest version on the server with 'svn up' and then get 'svn info': |
---|
| 26 | {{{ |
---|
| 27 | ? svn up |
---|
| 28 | Authentication realm: <http://svn.dsource.org:80> dsource-bindings |
---|
| 29 | Password for 'brad': |
---|
| 30 | {list of files updated} |
---|
| 31 | ? svn info |
---|
| 32 | Path: . |
---|
| 33 | URL: http://svn.dsource.org/projects/bindings/trunk |
---|
| 34 | Repository UUID: e3080b08-b6e0-0310-b0a6-cbd5e3aa05fd |
---|
| 35 | Revision: 19 |
---|
| 36 | Node Kind: directory |
---|
| 37 | Schedule: normal |
---|
| 38 | Last Changed Author: jcc7 |
---|
| 39 | Last Changed Rev: 19 |
---|
| 40 | Last Changed Date: 2005-03-27 22:52:21 -0600 (Sun, 27 Mar 2005) |
---|
| 41 | }}} |
---|
| 42 | You can see the updates that occurred. |