Difference between revisions of "Subversion"
Jump to navigation
Jump to search
Line 1: | Line 1: | ||
− | [nl]De opvolger van onze Subversion service is [[GitLab]]![/nl] | + | [nl]<big>De opvolger van onze Subversion service is [[GitLab]]!</big>[/nl] |
− | [en][[GitLab]] is the successor of our Subversion service![/en] | + | [en]<big>[[GitLab]] is the successor of our Subversion service!</big>[/en] |
---- | ---- | ||
Revision as of 12:39, 26 April 2016
GitLab is the successor of our Subversion service!
Migrating from Subversion
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
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).
The old subversion wiki page is archived here