# git init

`git init`

Start a new Git repository in the current folder.

## What each part does

- `git` — command — track changes to your project and share them
- `init` — argument: a file, a folder, or text

Source: https://zero2vibecode.com/explain/git-init
