> For the complete documentation index, see [llms.txt](https://www.git-help.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://www.git-help.com/commands/git-init.md).

# git init

'git init' will make the current directory/folder to git repo, which means you can link the current folder to a remote git hosting provider like GitHub.com, GitLab.com , BitBucket etc.

```
// Run this command inside the folder
git init
```
