Difference between revisions of "Gitlab Social Sciences"
m (C.Lieu moved page Meta:Gitlab Social Sciences to Gitlab Social Sciences without leaving a redirect) |
|||
Line 60: | Line 60: | ||
====External Users==== | ====External Users==== | ||
− | You can send a request with the following information to [mailto:c.lieu@socsci.ru.nl | + | You can send a request with the following information to [mailto:c.lieu@socsci.ru.nl Chi Lieu] or contact [mailto:j.keyser@donders.ru.nl Johaness Keyser] |
{| class="wikitable" | {| class="wikitable" | ||
Line 130: | Line 130: | ||
{{#ev:youtube|https://www.youtube.com/watch?v=7p0hrpNaJ14}} | {{#ev:youtube|https://www.youtube.com/watch?v=7p0hrpNaJ14}} | ||
+ | |||
+ | === Support === | ||
+ | |||
+ | For technical issues on the back-end please contact [mailto:c.lieu@socsci.ru.nl Chi Lieu] | ||
==References== <!-- Optional, include only if <ref> tags are used in the article. Note the Infobox Software has one reference for "Installed version" as well, so if filled in, keep this here as well --> | ==References== <!-- Optional, include only if <ref> tags are used in the article. Note the Infobox Software has one reference for "Installed version" as well, so if filled in, keep this here as well --> |
Revision as of 13:27, 11 November 2015
Development status | Active | ||||||||
---|---|---|---|---|---|---|---|---|---|
Written in | Ruby | ||||||||
Platform | Microsoft Windows, MacOSX, Linux | ||||||||
License | MIT License | ||||||||
Website | www.gitlab.com | ||||||||
|
Features
GitLab offers git repository management, code reviews, issue tracking, activity feeds and wikis.
With Gitlab you can:
- Create Code Together
- Review Code Together
- Deploy Code Together
- Document Code Together
You can access the Gitlab within the campus network. From outside the campus you will need a VPN connection [1].
Requirements
- For more information about usage requirements for various operation systems you can click here
User Login
You can logon on the environment with your University number or student number and password.
https://gitlab.socsci.ru.nl
External Users
You can send a request with the following information to Chi Lieu or contact Johaness Keyser
Username |
Email adres |
Full Name |
Configuration
Command Line Instructions
Git Global Setup
$ git config --global user.name "username" $ git config --global user.email "email address"
Create a new repository
$ mkdir newproject $ cd newproject $ git init $ touch README.md $ git add README.md $ git commit -m "first commit" $ git remote add origin git@gitlab.socsci.ru.nl:username/newproject.git $ git push -u origin master
Push an existing Git repository
$ cd existing_git_repo $ git remote add origin git@gitlab.socsci.ru.nl:username/newproject.git $ git push -u origin master
- You can also create a new project within the webinterface in Gitlab.
- Within the project on the webinterface you will also find the command line instructions.
Git Clients
You can find the git clients for various operating systems here
Editor support
Brackets
Documentation
Git Documentation
For Git documentation click here
GitLab Documentation
For step-by-step tutorial click here
Video Tutorial
Or you can watch the following tutorial on the following youtube video.
{{#ev:youtube|https://www.youtube.com/watch?v=7p0hrpNaJ14}}
Support
For technical issues on the back-end please contact Chi Lieu
References
External Links
- Official Website
- Gitlab – Technical documentation.