Welcome to the GitHub Collaboration Playground 🎉
This is a safe public space to practice:
- 🛠️ Forking a repository
- 🌿 Creating branches
- 📝 Making commits
- 🔄 Submitting Pull Requests (PRs)
- 🐞 Opening & handling Issues
- 💬 Commenting and reviewing code
Whether you're a beginner or just brushing up on GitHub workflow — you're in the right place! 💪
- Click the Fork button (top-right of this page).
- This creates your own copy of the repository.
git clone https://github.com/orpheusdark/pull-request-practice.gitReplace
YOUR-USERNAMEwith your GitHub username andREPO-NAMEwith your fork name.
Always work on a branch, not main:
git checkout -b my-first-branch- Add your name to
contributors.md - Add a small note or code snippet in
/practice-code/ - Fix a typo or improve documentation
git add .
git commit -m "Added my name to contributors.md ✨"git push origin my-first-branch-
Go to your fork on GitHub.
-
Click Compare & Pull Request.
-
Fill in:
- Title: Short and clear
Example:
Added Brian Clark to contributors list ✨ - Description: What you changed and why.
- Title: Short and clear
Example:
-
Click Create Pull Request 🎯
- Go to the Issues tab.
- Click New Issue.
- Choose the correct template (Bug / Feature / Question).
- Fill in the title & description (be detailed!).
- Submit the issue 🚀
-
Be polite and constructive 🤝
-
Mention people using
@username -
Use markdown for formatting:
- Bold text →
**Bold** - Code →
`code` - Lists →
- item 1
- Bold text →
- Open a Pull Request from the Pull Requests tab.
- Click Files changed to see edits.
- Use the + button to add inline comments 💡
- Suggest changes or approve ✅
- Keep it respectful 🤝
- Don’t push directly to
main - One feature/bugfix per branch
- Make commit messages clear & concise
- Always review before merging
Add your name in contributors.md:
- Your Name ✨Feel free to open an Issue, make a Pull Request, or just explore. This repo exists for learning and having fun! 😄