Hello Travis!

Follow these steps to complete your Git tutorial:

  1. Check if your Git config is already set:
    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"
  2. Clone the repository:
    git clone https://github.com/binbashburns/git-tutorial.git
    cd git-tutorial
  3. Create a new branch:
    git checkout -b travis-feature
  4. Open examples/travis.html, copy all contents.
  5. Paste it into users/travis.html to replace this tutorial.
  6. Stage and commit your changes:
    git add users/travis.html
    git commit -m "Travis: replaced tutorial with custom page"
  7. Push your branch:
    git push origin travis-feature
  8. Go to GitHub and create a Pull Request into main.