STAY INFORMED
following content serves as a personal note and may lack complete accuracy or certainty.

Minimal-Mistakes instruction
Useful vscode Shortcut Keys
Unix Commands
npm Commands
Vim Commands
Git Note
Useful Figma Shortcut Keys

less than 1 minute read

When you clone a project from github and push it, grass is not planted for some reason.

There is a simple solution.

git config --global user.name "Your GitHub Username"
git config --global user.email "your_email@example.com"

and check your name and email is set.

git config --global user.name
git config --global user.email

Now when you push what you cloned, grass will be planted.