How to tutorials, Linux, Linux.Tips

How to install Git on Ubuntu?

Less than a minute to read

Git is an open source distributed version control system originally developed by Linus Torvalds to support the development of the Linux kernel. Every Git working directory is a full-fledged repository with complete history and full version tracking capabilities, not dependent on network access or a central server.

Command to Install Git

sudo apt-get update
sudo apt-get install git

Check Git Version

git --version
git version 2.13.0


Leave a Reply