Git Intro
What I’ve learned from the article:
The types of version control:
- Local Version Control
- Centralized Version Control
- Distributed Version Control
What is Git and Features of it:
- Snapshots
- Local Operations
- Tracking chanes
- Loss of data
- States of files:
-
- Commited
-
- Modified
-
- Staged
The Workflow
The The Life Cycle of File Status:
- After you edit a file, Git flags it as modified because of changes made after the previous commit.
- You stage the modified file.
- Then, you commit staged changes.