Skip to content

Latest commit

 

History

History
26 lines (22 loc) · 715 Bytes

File metadata and controls

26 lines (22 loc) · 715 Bytes

Git Intro

What I've learned from the article:

The types of version control:

  1. Local Version Control
  2. Centralized Version Control
  3. Distributed Version Control

What is Git and Features of it:

  • Snapshots
  • Local Operations
  • Tracking chanes
  • Loss of data
  • States of files:
    1. Commited
    1. Modified
    1. Staged

The Workflow

The workflow

The The Life Cycle of File Status:

  1. After you edit a file, Git flags it as modified because of changes made after the previous commit.
  2. You stage the modified file.
  3. Then, you commit staged changes.

Lifecycle