- A Pull Request is how you ask to add your changes to the main project
- It lets maintainers review your work
- You have:
- Forked the repo
- Cloned it
- Made a branch
- Committed your changes
- Pushed your branch
Quick commands check:
- git status
- You should see: “nothing to commit, working tree clean”
- Go to your fork on GitHub
- You will often see:
- Compare & pull request
- If you don’t see it:
- Click Pull requests → New pull request
- Title:
- Keep it short
- Example: “Fix typo in docs”
- Description:
- What you changed
- Why you changed it
- If it fixes an issue, write: “Fixes #”
- If you changed text or docs, screenshots are optional
- Placeholder you can use:
- A maintainer may comment
- You can update the same PR by pushing more commits:
-
Edit files
git add . git commit -m "Address review comments" git push
-
- Don’t panic
- Read: How to Fix Merge Conflicts
- Try a beginner task: practice/simple-task.md