iCIS Intra Wiki
categories: Info - Support - Software - Hardware | AllPages - uncategorized
Difference between revisions of "Subversion"
Line 62: | Line 62: | ||
multiple clients on the working copy can mess things up. | multiple clients on the working copy can mess things up. | ||
Thus make sure all clients are of the same version (all 1.X). | Thus make sure all clients are of the same version (all 1.X). | ||
− | |||
− |
Revision as of 10:12, 19 December 2014
iCIS has its own subversion server. You can use this to create svn repositories and define the group of users that has access to these repositories yourself. In particular this means that you can cooperate with people who do not have a Science account.
The server has a nice webdav-based solution with a web front-end which allows you to:
- Create user accounts (only at local domain: cs.ru.nl via utp cable (eduroam is different network!))
- Create repositories (only at local domain: cs.ru.nl via utp cable (eduroam is different network!))
- Manage access to repositories
- Browse the repositories and their history using WebSVN
The ICIS Subversion Server is available at:
https://svn.cs.ru.nl
In order for you to get acquainted with the web front-end, we have set up a sandbox at:
https://svn.cs.ru.nl:4443
Keep in mind that the sandbox is just meant for you to play around with the features of the web front-end. It is also a place for us to test new features so your repositories will not be safe in such a place :) Furthermore, it is not possible to migrate user accounts or repositories from the sandbox to the real ICIS Subversion Server.
If you have any problems, questions, or suggestions, please contact svn-admin@cs.ru.nl.
Thanks to Bas Lijnse and Thomas van Noort for setting up the Subversion Server.
Rule: keep the same first two version numbers for all clients
This means :
- https://svn.cs.ru.nl has svn server version : 1.6.6
- then having following clients is not OK :
- client A with version 1.6.7
- client B with version 1.7.1
- however when having the following clients it is OK :
- client A with version 1.6.7
- client B with version 1.6.1
- also OK is :
- client A with version 1.7.7
- client B with version 1.7.1
Explanation :
http://en.wikipedia.org/wiki/Apache_Subversion Any 1.x version of a client can work with any 1.x server. Newer clients and servers have additional features and performance capabilities, but have fallback support for older clients/servers. => seems to go ok, however there is a catch : If you use both cmdline client and gui client then the older of the two cannot work anymore with the working copy because the newer of the two upgraded it to a new working copy version!! (See also next reference!)
http://stackoverflow.com/questions/1508466/svn-client-server-versions Most will automatically upgrade a working copy automatically to their own version; so if you checkout using an older 1.4 client, and update it with a newer client ( eg. the latest svn 1.6); the working copy will no longer be usable with the older the 1.4 client.
Thus you can use any 1.x client with any 1.y server however when using
multiple clients on the working copy can mess things up.
Thus make sure all clients are of the same version (all 1.X).