From 9b3cdbf8ec846f8db23241548c868f57b3839c40 Mon Sep 17 00:00:00 2001 From: AllynH Date: Fri, 21 Nov 2025 19:09:23 +0000 Subject: [PATCH] Adding contribution section. --- README.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/README.md b/README.md index 90d870d..4b9f310 100644 --- a/README.md +++ b/README.md @@ -42,3 +42,26 @@ This is a list of resources speakers can connect to their talk, such as location # Previous PyCons: If you'd like to submit data for a previous PyCon but the folder isn't there - create it 🙂 + + +# Contributing: +You'll need to create a branch and Pull Request to have your changes included. If you're not familiar the steps are as follows: + +## Creating a PR: + +### 1. Create and switch to a new branch +git checkout -b your-branch-name + +### 2. Make your changes (edit files, add features, etc.) + +### 3. Stage and commit your changes +git add . +git commit -m "Your descriptive commit message" + +### 4. Push the branch to GitHub +git push origin your-branch-name + +### 5. Open a Pull Request on GitHub: + - Go follow the URL to GitHub. + - Click "Compare & pull request" for your newly pushed branch. + - Fill in the PR details and submit.