Git
Commands Install: winget install git Set up: git config --global user.name "User Name" git config --global user.email "email@email.com" Create a New Project: mkdir project cd project git init (initialise empty git repo in my folder (based on path) aka .git folder) ls -la (check my folder) Check “world status”: git status ...