Difference between revisions of "Subversion"
(→Manual migration from Subversion to Gitlab) |
(alternatieve migratie) |
||
Line 28: | Line 28: | ||
You can also see this for public svn repositories on https://svn.science.ru.nl (viewing private repositories requires authentication). | You can also see this for public svn repositories on https://svn.science.ru.nl (viewing private repositories requires authentication). | ||
+ | |||
+ | == Migrating to a private SVN repository == | ||
+ | It is possible to continue to use subversion for your personal repository. In that case, you C&CZ can help you move your repository off the svn server to your home directory. From that point, you can access the repository via one of the [[Hardware_servers#Linux_.5Bloginservers.5D.5Blogin_servers.5D|login servers]]. | ||
== Old Subversion wiki page == | == Old Subversion wiki page == | ||
[nl]De oude subversion wiki pagina is [[OldSubversionPage|hier]] gearchiveerd.[/nl] | [nl]De oude subversion wiki pagina is [[OldSubversionPage|hier]] gearchiveerd.[/nl] | ||
[en]The old subversion wiki page is archived [[OldSubversionPage|here]][/en] | [en]The old subversion wiki page is archived [[OldSubversionPage|here]][/en] |
Revision as of 15:31, 26 April 2016
GitLab is the successor of our Subversion service!
Contents
Migrating from Subversion to Gitlab
We have automated the migration from Subversion to GitLab. Contact if you whish to have clone access to your migrated repository.
Manual migration from Subversion to Gitlab
Inspired by this short manual, an SVN to git conversion could boil down to something like:
cd /tmp/
git svn clone --no-metadata -A users.txt https://svn.science.ru.nl/repos/myproject
cd myproject
git remote add gitlab :yourscienceloginname/myproject.git
git push --set-upstream gitlab master
Git URLs (https and ssh) are shown on the top of the project page in gitlab. The generic repository URL for the science SVN server is:
https://svn.science.ru.nl/repos/{repository}
And for CS:
https://svn.cs.ru.nl/repos/{repository}
You can also see this for public svn repositories on https://svn.science.ru.nl (viewing private repositories requires authentication).
Migrating to a private SVN repository
It is possible to continue to use subversion for your personal repository. In that case, you C&CZ can help you move your repository off the svn server to your home directory. From that point, you can access the repository via one of the login servers.
Old Subversion wiki page
The old subversion wiki page is archived here