How do you create a new Git repository?
To create a new Git repository, navigate to your project directory and use the command:
git init
This initializes an empty Git repository in that directory. Now you can start tracking changes
in your project.
Follow:
Real-World Example:
Imagine you're starting a new website project on your computer. You open your terminal, go
to your project folder, and type git init. This sets up the Git repository, and you can start
tracking your changes immediately.