Version control systems help you collaborate on software development projects. Git is one of the most popular version control systems currently available.
This tutorial will walk you through installing and configuring Git from source on an Ubuntu 20.04 server. For a more detailed version of this tutorial, with more thorough explanations of each step, please refer to How To Install Git on Ubuntu 20.04.
Verify whether you have a version of Git currently installed on the server:
If Git is installed, you’ll receive output similar to the following:
Outputgit version 2.25.1
Whether or not you have Git installed already, it is worth checking to make sure that you install a more recent version during this process.
You’ll next need to install the software that Git depends on. This is all available in the default Ubuntu repositories, so we can update our local package index and then install the relevant packages.
Press y
to confirm if prompted. Necessary dependencies should now be installed.
Create a temporary directory to download our Git tarball and move into it.
From the Git project website, we can navigate to the tarball list available at https://mirrors.edge.kernel.org/pub/software/scm/git/ and download the version you would like. At the time of writing, the most recent version is 2.26.2, so we will download that for demonstration purposes. We’ll use curl and output the file we download to git.tar.gz
.
Unpack the compressed tarball file:
Next, move into the new Git directory:
Now, you can make the package and install it by typing these two commands:
Now, replace the shell process so that the version of Git we just installed will be used:
You can be sure that your install was successful by checking the version.
Outputgit version 2.26.2
With Git successfully installed, you can now complete your setup.
Now that you have Git installed and to prevent warnings, you should configure it with your information.
If you need to edit this file, you can use a text editor such as nano:
[user]
name = Your Name
email = youremail@domain.com
To learn more about how to use Git, check out these articles and series:
Thanks for learning with the DigitalOcean Community. Check out our offerings for compute, storage, networking, and managed databases.
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!