Installing git

git --version

Configuring git

git config --global user.name "<your name>"
git config --global user.email <email>

Checking your git configs

git config --list

Clone a repo onto your computer

git clone <repo link>

See changes between the working directory and local git repo

git status

Staging changes

→ Adding all files in the folder

git add .

Making a commit

git commit -m "<commit message>"

Showing all commits

git log

Pushing your commit

git push