To install Git CLI for LazyMagic: Download Git for Windows from git-scm.com/downloads, run the installer with default settings, then verify with git --version
and configure your user name and email.
Git CLI is the command-line interface for Git, a distributed version control system. LazyMagic requires Git CLI to clone repositories, manage source code, and work with the LazyMagic sample systems.
Download the Git installer from the official website:
Open PowerShell or Command Prompt and run:
git --version
You should see output showing the Git version number.
Set your name and email address for Git commits:
git config --global user.name "Your Name"
git config --global user.email "your.email@example.com"
To verify Git is properly configured:
git config --global user.name
git config --global user.email
After successfully installing Git CLI, proceed to set up GitHub access in the next step of the LazyMagic setup process.