From the course: Git for Teams

Unlock the full course today

Join today to access over 22,400 courses taught by industry experts or purchase this course individually.

GitLab installation

GitLab installation - Git Tutorial

From the course: Git for Teams

Start my 1-month free trial

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 running the curl command and then we need to specify a URL to the…

Contents