Posts

Showing posts from March, 2020

Getting Started with GIT by Vitesh and Shubham

Image
Figure 1 What is GIT? Git is an opensource software that is developed by Linus Torvalds in 2005 for the development of the Linux kernel. It is a distributed version control system that is capable of handling everything from small to very large projects with better performance and efficiency. Every git directory on every computer is a fully-fledged repository with complete version tracking abilities and history and it is not dependent on network access or central connectivity . Why GIT? Reasons why you should try git: 1. Distributed Development - It creates a more reliable and secure environment for developers to work on their projects. Even if a user obliterates their own repository, they can simply clone someone else’s and start a new one. As Git is a distributed version control system, each user gets their own local repository and with a full complete history of commits made to the projects. 2. Performance – Looking at the performance part, Git is very go...