Navigation
2 | 3 | 4 | 5 | 6 | 7 | 8 | Current Level: 9 | 10 | 11 | 12 | 13 | 14 | 15
Lesson: Create Pull Requests
🎯 Objective
Each team member will open a pull request (PR) from their personal branch into main
, providing a clear description of what their page contributes to the project.
👣 Steps
-
Go to the Pull Requests Tab
- In your repository, click the Pull requests tab.
- Click the green “New pull request” button.
-
Choose the Correct Branches
- For the base branch, select
main
.
- For the compare branch, select your personal branch (e.g.,
alex-page
).
- Confirm the changes listed are correct.
-
Add a Title and Description
- Use a short, clear title like:
Add Alex's personal page
.
- In the description box, briefly explain what you added (e.g., “Created alex.html with a heading and paragraph about me.”)
-
Submit the Pull Request
- Click “Create pull request”.
- Your teammates will now be able to review your code and merge it later.
✅ Practice Check
💬 Discussion Prompt
Why is it important to explain your changes in a pull request instead of just submitting it with no description?