Hello Matt!

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 "Matt"
    git config --global user.email "matt@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 matt-feature
  4. Open examples/matt.html, copy all contents.
  5. Paste it into users/matt.html to replace this tutorial.
  6. Stage and commit your changes:
    git add users/matt.html
    git commit -m "Matt: replaced tutorial with custom page"
  7. Push your branch:
    git push origin matt-feature
  8. Go to GitHub and create a Pull Request into main.