Skip to content

Latest commit

 

History

History
22 lines (13 loc) · 739 Bytes

01-Git-Introduction.md

File metadata and controls

22 lines (13 loc) · 739 Bytes

Git Introduction

In this section, we will take a look at Git Introduction

Git

  • Git is a Distributed Version Control System

  • Git is a content tracker, it stores all our code changes.

    g1

  • Distributed means it has a remote repository which is stored in a server and a local repository which is stored on the computer of every developer working on a project. Every developer has a full copy of the code base.

    g2

  • We can go back in time, without loosing any new changes.

    g3

  • You have access to entire project history

    g4