Difference between revisions of "GitLab"
Jump to navigation
Jump to search
m (linkjes gefixed... verkeerde notatie gebruikt) |
|||
Line 1: | Line 1: | ||
== About GitLab == | == About GitLab == | ||
[[Bestand:gitlab.png|thumb|alt=GitLab logo|GitLab]] | [[Bestand:gitlab.png|thumb|alt=GitLab logo|GitLab]] | ||
− | Quote from the [https://about.gitlab.com/features/ | + | 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> | <blockquote>GitLab is an incredibly powerful open source code collaboration platform, git repository manager, issue tracker and code reviewer.</blockquote> | ||
Line 15: | Line 15: | ||
== Documentation == | == Documentation == | ||
− | [http://doc.gitlab.com/ce/ | + | [http://doc.gitlab.com/ce/ General GitLab documentation] |
== Migrating from Subversion == | == Migrating from Subversion == | ||
− | Inspired by [https://gist.github.com/leftclickben/322b7a3042cbe97ed2af | + | Inspired by [https://gist.github.com/leftclickben/322b7a3042cbe97ed2af this short manual], an SVN to git conversion could boil down to something like: |
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> |
Revision as of 13:49, 29 January 2015
About GitLab
Quote from the GitLab website
GitLab is an incredibly powerful open source code collaboration platform, git repository manager, issue tracker and code reviewer.
Logging in
Navigate to:
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 --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).