git config --global init.defaultBranch main
git config --global user.name "benjamin"
git config --global user.email [email protected]
git init
git add .
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/benpdavis/REPOSITORYNAMEGOESHERE.git
git push -u origin main
git commit --amend
git push --force-with-lease origin main