Git introduction
Git is a distributed version control system that tracks:- File changes over time
- Who made each change
Local vs remote repositories
Git has two repository types: local and remote.Local repository
Stored directly on your own machine. You have full access to the entire history and can work offline.
Most Git workflows involve both a local repository (where you do your work) and a remote repository (where you share that work with your team).