Member-only story

Git: Basic terms and commands beginner-friendly guide

--

Git is the most widely used Version Control System(VCS) that maintains your source content while you focus on just writing your code!!!

We tend to constantly change and save our work. Not just that we also like to go back in time and check out previous source codes, documents, pdfs, pictures, and videos, etc.

So this implies, that we want to keep a history of how our data evolved over a period of time, get a last known good copy of it. Moreover, be able to work on the same piece of data together with other contributors concurrently.

This is exactly what a good VCS does for us.

What is Git?

Git is the most widely used open-source distributed VCS software.

Git has taken the Source Code Management(SCM) by storm with its awesome features like distributed development, speed, easy branching, and merging, and the ease with which git can collaborate everyone’s work while maintaining data integrity.

The architecture of Git is designed to support parallel development, called branching.

Your initial project itself is based out of a master branch. This promotes efficient feature developments, easy bug fixes, and code reviews. As a result, frequent synchronous work merges among…

--

--

No responses yet