From the course: Git for Teams

Unlock this course with a free trial

Join today to access over 25,300 courses taught by industry experts.

GitLab installation

GitLab installation - Git Tutorial

From the course: Git for Teams

GitLab installation

- [Instructor] Before we explore Gitlab's features we'll need to install the software. This lesson will focus on how to perform Gitlab installation on the Ubuntu operating system. Gitlab works best when installed on a Linux distribution which is why we are using Ubuntu. We'll be performing the installation via an Ubuntu terminal using the Advanced Package Tool or APT-GET. The first thing that we need to do is update APT-GET by issuing the command sudo apt-get update. This will ensure we have the latest packages within the manager. Next, we'll need to install some other packages used by Gitlab, specifically Curl, OpenSSH, and CA Certs. Once again, we will be using sudo and then we issue the apt-get command and then install -y curl openssh-server and then finally ca-certificates. Next, we're going to use curl to download and run a script that will install Gitlab. We'll use the dash s and then upper case S flags when…

Contents