# Repo

A repository, or repo, is a local directory which is tracked by git. Everything that happens in a git repo, every change and modification, can by identified by git.

In order to create a local repo, you need to run the following command in the root folder of your project:

cd new-project
git init

This will set up a new repository in that folder.