git init turns a folder into a git repository: it creates a hidden
.git directory where every future snapshot will live. Nothing else changes.
In your terminal, create a playground folder and initialize it:
!mkdir -p git-playground && cd git-playground && git init
Then click Check in the journey tray — it verifies the repository really exists.