DEV Community

ODINKEMELU INNOCENT
ODINKEMELU INNOCENT

Posted on

Training with Guidelines, on how to understand Git and GitHub as a beginner.

                 INSTALL Git
Enter fullscreen mode Exit fullscreen mode

Google search on internet
Image description

Download Git Bash here : https://git-scm.com/downloads

Image description

             CONFIGURE Git Bash
Enter fullscreen mode Exit fullscreen mode

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 "

Image description
Create and Enter a Project Directory
mkdir websitem
cd website
Image description
Initialize a Git Repository
Command :
git init

Image description
Check the Git Status
Command :
git Status

Image description
Create a New File
Command :
touch index.html

Top comments (0)