DEV Community

Alyarov Faxriyor
Alyarov Faxriyor

Posted on

Learn Git & GitLab

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)

Billboard image

The Next Generation Developer Platform

Coherence is the first Platform-as-a-Service you can control. Unlike "black-box" platforms that are opinionated about the infra you can deploy, Coherence is powered by CNC, the open-source IaC framework, which offers limitless customization.

Learn more