summaryrefslogtreecommitdiff
path: root/tutorials/module_2/2_version_control.md
blob: 5a28715df8b66e30fd0e7ddeb7183b7f0c8cb398 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Version Control

## What is Version Control
Version control is a system that tracks changes to files, enabling developers to collaborate, manage code history, and revert to previous versions when needed.

Why use it you may ask?
- Tracks changes and history.
- Enables collaboration among developers.
- Reduces errors by managing code versions.
- Supports branching and merging for parallel development.

## Git
Git is a version control program that allows

## GitHub