Your first contribution #
We made this guide to help you get started contributing to our documentation.
Steps #
-
Fork the repository
-
Clone the repository to your local machine or use a Codespace
gh repo clone <your-username>/docs
-
Create a new branch
git switch -c my-new-branch
-
Make your changes
echo "Hello, World!" > ./posts/<new-section>/posts/hello-world.md
-
Push your changes
git add . git commit -S -m "Add hello world section" git push origin my-new-branch
-
Create a pull request
gh pr create --base main --head my-new-branch
-
Wait for the pull request to be reviewed
-
Merge the pull request
-
Celebrate 🎉