Creating a repo

Creating a repo

Create a folder of your choice and open it in terminal

Create a file called hello.txt with the following content inside the above folder and save it

Configure your File Explorer to see hidden files as well

Initialize the repository

git init
Initialized empty Git repository in C:/Users/ravi_/source/repos/Experiments/GitExperiments/FirstDemo/.git/

We can now see the git repository created in the above folder

Last updated