Difference between revisions of "GitLab"
m |
|||
Line 1: | Line 1: | ||
== About GitLab == | == About GitLab == | ||
− | + | [[Bestand:gitlab.png|thumb|alt=GitLab logo|GitLab]] | |
− | [[Bestand:gitlab.png]] | + | Quote from the [https://about.gitlab.com/features/|GitLab website] |
− | + | <blockquote>GitLab is an incredibly powerful open source code collaboration platform, git repository manager, issue tracker and code reviewer.</blockquote> | |
== Logging in == | == Logging in == | ||
Line 9: | Line 9: | ||
<code>http://gitlab.science.ru.nl</code> | <code>http://gitlab.science.ru.nl</code> | ||
− | + | GitLab is an incredibly powerful open source code collaboration platform, git repository manager, issue tracker and code reviewer. | |
You'll see two login options: | You'll see two login options: | ||
* Science login - for students and employees of the Science Faculty. Use your [[Login|Science login]]. | * Science login - for students and employees of the Science Faculty. Use your [[Login|Science login]]. |
Revision as of 01:18, 29 January 2015
About GitLab
Quote from the website
GitLab is an incredibly powerful open source code collaboration platform, git repository manager, issue tracker and code reviewer.
Logging in
Navigate to:
http://gitlab.science.ru.nl
GitLab is an incredibly powerful open source code collaboration platform, git repository manager, issue tracker and code reviewer.
You'll see two login options:
- Science login - for students and employees of the Science Faculty. Use your Science login.
- Standard - for external users.
Documentation
Migrating from Subversion
Inspired by this short manual, an SVN to git conversion could boil down to something like:
cd /tmp/
git svn clone --stdlayout --no-metadata -A users.txt https://svn.science.ru.nl/repos/myproject
cd myproject
git remote add gitlab :scienceloginname/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}
You can also see this for public svn repositories on https://svn.science.ru.nl (viewing private repositories requires authentication).