1. Log in to github; gh auth login. Follow directions.
  2. git config --global user.email "<email@addr.ess>" followed by git config --global user.name "<name>"
  3. git remote add <projectname> <github url, append '.git'>
  4. git branch -M main
  5. Open terminal in project folder.
  6. git init
  7. git add -A
  8. git commit -m "<comment; be verbose.>"
  9. git push -u <projectname> main