git init files code example
Example 1: git init
cd /path/to/my/codebase
git init
git add .
git commit -m "my comment"
Example 2: init step way to create repository git
git configuration
cd /path/to/my/codebase
git init
git add .
git commit -m "my comment"
git configuration