Follow these steps to complete your Git tutorial:
git config list | grep "user."
If you see output like this, you're all set:
user.name=your-github-username
user.email=your-github.email
If not, set your Git name and email:
git config --global user.name "Matt"
git config --global user.email "matt@example.com"
git clone https://github.com/binbashburns/git-tutorial.git
cd git-tutorial
git checkout -b matt-feature
examples/matt.html
, copy all contents.users/matt.html
to replace this tutorial.git add users/matt.html
git commit -m "Matt: replaced tutorial with custom page"
git push origin matt-feature
main
.