Site Update Notice
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.
Also, if you have any working copies on your local development PC, follow these steps to switch to the new SVN repos location:
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.
- Move into the folder/directory of your working copy and see what's going on with 'svn info'.
? cd /home/brad/dev/d/bindings ? svn info Path: . URL: http://svn.dsource.org/svn/projects/bindings/trunk Repository UUID: e3080b08-b6e0-0310-b0a6-cbd5e3aa05fd Revision: 4 Node Kind: directory Schedule: normal
- Use 'svn switch' command with --relocate flag to change URL:
? svn sw --relocate http://svn.dsource.org/svn/projects/bindings/trunk \ http://svn.dsource.org/projects/bindings/trunk Authentication realm: <http://svn.dsource.org:80> dsource-bindings Password for 'brad':
- 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':
? svn up Authentication realm: <http://svn.dsource.org:80> dsource-bindings Password for 'brad': {list of files updated} ? svn info Path: . URL: http://svn.dsource.org/projects/bindings/trunk Repository UUID: e3080b08-b6e0-0310-b0a6-cbd5e3aa05fd Revision: 19 Node Kind: directory Schedule: normal Last Changed Author: jcc7 Last Changed Rev: 19 Last Changed Date: 2005-03-27 22:52:21 -0600 (Sun, 27 Mar 2005)
You can see the updates that occurred.