Step 1:
Install git to your computer
Step 2:
Check git version in your computer
git --version
Step 3:
Configiration git
set your username to git
git config --global user.name {your username here}
check your username
git config --global user.name
set your email to git
git config --global user.email {your email here}
check your email
git config --global user.email
view all your information
git config --global --list
Step 4:
Git initialize
git init
Status of your project
git status
Add your all updated or created files and folders
git add .
or add exact file or folder
git add {folder or file path}
Top comments (0)