What is git?
Git is a software that allows you to keep track of changes made to a project over time
What do you type into the terminal to start/create a git project?
git init
What are the three parts of a git project?
Working directory: This is where all the modifications will happen and organising files
Staging Area: Bring changes into the staging area
Repository: Where git permanently stores changes as different versions of the project
If I want to add a file from the working directory to the staging area, how can I do this? What code do I type?
git add filename