INSTALL Git
Download Git Bash here : https://git-scm.com/downloads
CONFIGURE Git Bash
Here are some Commands to tell Git who you are :
git config--global user.name " ODINKEMELU INNOCENT CHIJIOKE "
git config--global user.email " innocent.interpharma@gmail.come "
Create and Enter a Project Directory
mkdir websitem
cd website
Initialize a Git Repository
Command :
git init
Check the Git Status
Command :
git Status
Create a New File
Command :
touch index.html
Top comments (0)