Back to Home

Basics of GIT for web-dev beginners👶

Basics of GIT for web-dev beginners👶

What is Git?

  1. Git is a distributed version control system.
  2. The entire codebase and history is available on every developer’s computer, which allows for easy branching and merging.
  3. It is used as Version Control System (VCS) for tracking changes in computer files.
  1. And then Continue Next > Next > Next > Install

  2. After Installation We need To configure git using git bash

  3. git config –global user.name ‘YourName’

  4. git config –global user.email ‘YourEmail’


    Git Commands


    Getting & Creating Projects

    Basic Snapshotting

    Branching & Merging

    Sharing & Updating Projects

    Inspection & Comparison

Example:

Follow the lesson from Microsoft Web-Dev-For-Beginners course

Tags: git