Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
60 changes: 60 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,63 @@ An Open Source sprint is a short event where groups of people get together to wo

### [Meet the Contributors](./open_source_stories.md)
About the contributors to this repo and their Open Source experience.


## Getting Started: Git Setup & First Pull Request

If you are new to open source, follow these simple steps to make your
first contribution.

### Step 1: Install Git
Download Git from:
https://git-scm.com/downloads

Check installation:
```bash
git --version

Comment on lines +34 to +36
Copy link

Copilot AI Jan 5, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The code block for Git version check is not properly closed. Missing the closing triple backticks (```) at the end of the code block before Step 2 begins.

Copilot uses AI. Check for mistakes.
### Step 2: Configure Git
Set your name and email (required for commits):

```bash
git config --global user.name "Your Name"
git config --global user.email "your@email.com"
Comment on lines +40 to +42
Copy link

Copilot AI Jan 5, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The code block for Git configuration is not properly closed. Missing the closing triple backticks (```) at the end of the code block before Step 3 begins.

Copilot uses AI. Check for mistakes.

### Step 3: Fork the Repository
Click the **Fork** button at the top-right of this repository.
This will create a copy of the repository under your GitHub account.

### Step 4: Clone the Repository
Clone your fork to your local machine:

```bash
git clone https://github.com/YOUR-USERNAME/getting-started-with-open-source.git
cd getting-started-with-open-source
Comment on lines +51 to +53
Copy link

Copilot AI Jan 5, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The code block for cloning the repository is not properly closed. Missing the closing triple backticks (```) at the end of the code block before Step 5 begins.

Copilot uses AI. Check for mistakes.

### Step 5: Create a New Branch
Create and switch to a new branch:
git checkout -b my-first-contribution
Copy link

Copilot AI Jan 5, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This command should be formatted as a code block with triple backticks (```) for consistency with the other steps in this section.

Copilot uses AI. Check for mistakes.

### Step 6: Make Your Changes

Open README.md
Make your changes
Save the file
Comment on lines +61 to +63
Copy link

Copilot AI Jan 5, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These instructions should be formatted as a proper list or code block for consistency with the rest of the documentation. Currently they appear as plain text without formatting.

Copilot uses AI. Check for mistakes.

### Step 7: Commit Your Changes

Stage and commit your changes:

git add README.md
git commit -m "Improve README with Git setup and first PR steps"
Comment on lines +69 to +70
Copy link

Copilot AI Jan 5, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These commands should be formatted as a code block with triple backticks (```) for consistency with the other steps in this section.

Copilot uses AI. Check for mistakes.

### Step 8: Push Changes to GitHub
Push your branch to your fork:
git push origin my-first-contribution
Copy link

Copilot AI Jan 5, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This command should be formatted as a code block with triple backticks (```) for consistency with the other steps in this section.

Copilot uses AI. Check for mistakes.

### Step 9: Create a Pull Request

Go to your fork on GitHub
Click Compare & Pull Request
Add a short description
Submit the PR
Comment on lines +78 to +81
Copy link

Copilot AI Jan 5, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These instructions should be formatted as a proper list (with bullet points or numbered sub-items) for consistency with the rest of the documentation. Currently they appear as plain text without formatting.

Copilot uses AI. Check for mistakes.