Questions tagged [gitlab]

GitLab is an open source Git repository manager with issue tracking and wiki as well as continuous integration features. Use this tag for programming questions related to the GitLab API or similar; questions about general usage are considered off-topic.

GitLab is open source software to collaborate on code. It can be considered an open source self-hosted GitHub, but GitLab.com also provides Git hosting in the way GitHub does, and you can also have private repositories for free.

Features

GitLab has the following features:

Screens

GitLab-demo

There are three versions available for GitLab:

  • Community Edition (CE)
  • Enterprise Edition Starter (EES)
  • Enterprise Edition Premium (EEP)

Resources

  1. Source code (GitHub mirror)
  2. Documentation
  3. Community
  4. Mailing list
  5. Official blog
  6. GitLab Continuous Integration
17630 questions
6
votes
2 answers

Changing the default Gitlab port

I have installed the latest Gitlab-CE (8.10) on CentOS 7 (fresh install) via the Omnibus package as described here: https://about.gitlab.com/downloads/#centos7 Now, I would like to change the default port at which one can access the Gitlab web…
ewcz
  • 12,819
  • 1
  • 25
  • 47
6
votes
3 answers

Can't change users project limit in GitLab

I have installed GitLab-CE from the projects package repo on a Ubuntu 16.04 LTS system. The package version is this: 8.9.5-ce.0 The architecture is AMD64. I have configured everything fine. I have HTTPS and so on. I created my admin account and so…
PHPDeveloper
  • 81
  • 1
  • 1
  • 5
6
votes
1 answer

Integrate Gerrit with Gitlab

Do you have any tips or tutorials how to integrate Gerrit with Gitlab - Gerrit should be as code review for Gitlab repo?
Lavrentijs L
  • 119
  • 1
  • 8
6
votes
3 answers

Project settings in Gitlab

Where now "Project settings" in Gitlab? How delete repository? And change "Visibility Level" repository? And rename project?
user3430722
  • 345
  • 1
  • 5
  • 12
6
votes
2 answers

How to search multiple Projects in GitLab

I am trying to find a way to search multiple project's code in gitlab CE. Has anyone encountered this before, or have a recommended approach? (I realize that if this is even possible, then I would likely need to create a script that mimics the…
Liv MacIntosh
  • 153
  • 1
  • 10
6
votes
1 answer

What are special files like CHANGELOG/LICENSE/VERSION/CONTRIBUTING/new_issue called?

Popular repository-hosting platforms like GitHub.com and GitLab enable the use of special files (readme-files) like README/CHANGELOG/LICENSE/VERSION/CONTRIBUTING (or similar eg ending in .md) and offer direct links to them or include them in the…
kmindi
  • 4,524
  • 4
  • 31
  • 47
6
votes
1 answer

GitLab cancel or delete a push

I want to cancel my last push, because a pushed the app/build folder changes Is it possible to revert a push or the last push in Gitlab?
medlamine Semassel
  • 115
  • 1
  • 1
  • 4
6
votes
1 answer

Is it possible to use multiple gitlab runners for one CI build?

There is a project which has a lot of tests, and running them all takes about 20 minutes. Unfortunately, it is not possible to parallel them inside one gitlab runner. I wonder if there are any good practices to start multiple gitlab runners with the…
t1maccapp
  • 323
  • 7
  • 16
6
votes
1 answer

Installing Java on online Gitlab ci

Here is my .gitlab-ci.yml script. before_script: - uname -a - apt-get install default-jre default-jdk openjdk-7-jre openjdk-7-jdk - java -version - export MODE="service" - export PID_FOLDER="/var/run/gitlab-runner-test" dev: script: …
Jalpesh
  • 1,104
  • 1
  • 13
  • 25
6
votes
1 answer

How to get builds badge image from Gitlab CI

I would like to get the build badge image on my project from Gitlab CI. I know the url (documentation) : http://example.gitlab.com/namespace/project/badges/branch/build.svg But my project is a private project, and the link require authentification…
Thlbaut
  • 649
  • 7
  • 25
6
votes
1 answer

GitLab authentication failure with Github account

I recently created a project on gitlab logged with my Github account. But when cloning the project with gitbash (with my current ssh-key added to the gitlab account) the shell prompts for username/password, entering my username and password from…
Marcos Vasconcelos
  • 18,136
  • 30
  • 106
  • 167
6
votes
2 answers

Is it possible in gitlab-ci build another branch to another directory?

I want to use one gitlab-runner to make two similar, but not exact same builds. In the git repository, I have several branches: prod, test, dev. Is it possible to use only one runner to build on different paths? For example:…
Psychozoic
  • 607
  • 4
  • 9
  • 24
6
votes
1 answer

How to use GitLab and Gitlab-Mattermost on one machine?

My conf-file: external_url "http://192.168.3.23" # note the use of a dotted ip gitlab_rails['gitlab_email_enabled'] = true gitlab_rails['gitlab_email_from'] = 'gitlab@myhome.com' gitlab_rails['gitlab_email_display_name'] =…
scientistnik
  • 343
  • 4
  • 19
6
votes
3 answers

Jenkins Error : Could not checkout with start point

I've created a branch from develop branch and configured a Jenkins job for this new branch. Before branching out this new branch actually I'had to remove an existing directory in develop branch (Removed the directory locally then committed the…
CAD
  • 4,112
  • 6
  • 29
  • 47
6
votes
2 answers

`test:first job: script should be a string or an array of a strings`

I'd like to create a simple "hello, world" Gitlab CI script. I already got the Docker runner working and I'm experimenting with something like this: image: debian:sid test:first: script: - true Unfortunately, the build fails with the error:…
d33tah
  • 10,999
  • 13
  • 68
  • 158
1 2 3
99
100