Version control
A tool that records versions of files in a local repository.
Use it to inspect changes and return to earlier versions. Git works locally; GitHub is an online service that can host a copy.
Official setup instructions ↗
At the PowerShell prompt. Type the command, then press Enter. PSTool guide↗
Check that Git is available.
git --version
What you should see: A Git version is printed.
In an existing practice repository’s folder, inspect changes without modifying files.
git status
What you should see: Git lists the branch and changed files, or says the working tree is clean.
Some use it only for optional local practice. Each lesson explains what you actually need.
Guide reviewed 2026-09-09. Menu labels can differ between versions.