Skip to content

Conversation

@Rashii9
Copy link

@Rashii9 Rashii9 commented Jan 5, 2026

This PR adds a beginner-friendly section explaining Git setup
and how to make a first pull request.

Fixes #37

Copilot AI review requested due to automatic review settings January 5, 2026 18:29
Copy link

Copilot AI left a comment

Choose a reason for hiding this comment

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

Pull request overview

This PR adds a beginner-friendly "Getting Started" section to the README that guides newcomers through Git setup and creating their first pull request. The addition provides step-by-step instructions covering Git installation, configuration, repository forking, cloning, branching, making changes, committing, pushing, and creating a pull request.

Key Changes:

  • Added a new "Getting Started: Git Setup & First Pull Request" section with 9 detailed steps
  • Provided command-line examples for Git operations
  • Included instructions for forking and cloning the repository

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment on lines +40 to +42
```bash
git config --global user.name "Your Name"
git config --global user.email "your@email.com"
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.
Comment on lines +51 to +53
```bash
git clone https://github.com/YOUR-USERNAME/getting-started-with-open-source.git
cd getting-started-with-open-source
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.
Comment on lines +61 to +63
Open README.md
Make your changes
Save the file
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.
Comment on lines +69 to +70
git add README.md
git commit -m "Improve README with Git setup and first PR steps"
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.
Comment on lines +78 to +81
Go to your fork on GitHub
Click Compare & Pull Request
Add a short description
Submit the PR No newline at end of file
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.
Comment on lines +34 to +36
```bash
git --version

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.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Improve README: Add clearer steps for Git setup & first PR

1 participant