Hello Kutubo!

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