Accessing github
Open Git Bash
ls ~/.ssh
if this shows two files (in addition to others): id_rsa and id_rsa.pub, go on else
type
ssh-keygen
at BASH prompt:
eval `ssh-agent`
ssh-add
It should say identiy added.
Log in to Github classroom
if have to create account, create one using your MSOE username
go to keys
create key labeled "msoe laptop git bash dec 2021"
type
cat ~/.ssh/id_rsa.pub
Use the moouse to copy/paste to the box
click ok
Should now be able to do a git clone using the SSH protocol
Will need to redo
eval `ssh-agent`
ssh-add
each time start a new bash prompt - it's reasonable to just leave the
prompt open at the root of the project while you're working on it.