This guide will help you install and configure Git on your system before the workshop.
git --version- Download Git from git-scm.com.
- Run the installer and choose default settings.
- Verify installation:
git --versiongit config --global user.name "Your Name"
git config --global user.email "your-email@example.com"
git config --listssh-keygen -t ed25519 -C "your-email@example.com"
eval "$(ssh-agent -s)"
ssh-add ~/.ssh/id_ed25519
cat ~/.ssh/id_ed25519.pubThen add the key in GitHub → Settings → SSH and GPG keys.