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