Hello Ryan!

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