Create a local git repository

Follow these steps to get started with a local git repository.

Commands

Create local git repo
1
2
3
4
5
6
mkdir my-project
cd my-project
git init
vim README.md
git add README.md
git commit -m 'Add read me file'