We walk through installing Git on a Windows machine and running some configuration commands, as well as creating an SSH key and loading that into a GitHub profile. Finally, we clone a Git repository down to our machine to test that everything is correct.
These commands are used in the video:
git config --global user.name "Your Name Comes Here"
git config --global user.email [email protected]
ssh-keygen -t ed25519 -C "[email protected]"
A repository address you can clone down to make sure you did everything correctly:
https://github.com/ThatCodingGuyHayes...