Audhi Aprilliant
Audhi Aprilliant Data Scientist. Tech Writer. Statistics, Data Analytics, and Computer Science Enthusiast

Git as Version Control System - Introduction

Git as Version Control System - Introduction

Overview

Git is a free and open source distributed version control system (VCS) designed to handle everything from small to very large projects with speed and efficiency. Git was created by Linus Torvalds in 2005 for development of the Linux kernel. On a very basic level, there are two awesome things a VCS allows you to do: You can track changes in your files and it simplifies working on files and projects with multiple people.

How to Install Git (Linux)

To install git on Linux, copy & paste the following into the terminal window and hit Return. You may be prompted to enter your password

1
2
3
sudo apt-get update
sudo apt-get upgrade
sudo apt-get install git

Documentation for Workshop

I have authored a comprehensive documentation for a Git workshop, covering various topics and best practices. It is my pleasure to share this document with anyone interested in enhancing their Git skills here.

Sources

Git SCM

comments powered by Disqus