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 "Kutubo"
git config --global user.email "kutubo@example.com"
git clone https://github.com/binbashburns/git-tutorial.git
cd git-tutorial
git checkout -b kutubo-feature
examples/kutubo.html
, copy all contents.users/kutubo.html
to replace this tutorial.git add users/kutubo.html
git commit -m "Kutubo: replaced tutorial with custom page"
git push origin kutubo-feature
main
.