ETC5513: Collaborative and Reproducible Practices
Tutorial 5
🤝 Exercise 1: Forking and Pull Requests in Pairs
In this exercise, you’ll work with a partner to practice real-world collaboration on GitHub.
You’ll learn how to:
- Fork a GitHub repo created by your teammate
- Make a change
- Submit a pull request (PR)
- Review and merge someone else’s PR
🧑🤝🧑 Step 1: Pair Up
Assign roles in your pair:
- Student A = Repository Owner
- Student B = Contributor (forks and submits a pull request)
You’ll switch roles after completing the exercise.
🛠️ Step 2: Student A – Create a Starter Repository
Go to https://github.com and log in.
Click + → New Repository
Name the repository something simple, like
collab-demo
✅ Check Add a README file
Click Create Repository
Share the URL of the repository with Student B
Now clone the repository to your own computer:
- Click the green Code button → choose SSH and copy the URL
- In your terminal:
git clone git@github.com:your-username/collab-demo.git cd collab-demo
- Click the green Code button → choose SSH and copy the URL
Create a new RStudio Project in an existing directory:
- Open RStudio
- Go to File → New Project → Existing Directory
- Browse to the folder you just cloned (e.g.,
collab-demo
)
- Click Create Project
- Open RStudio
Add, commit and push the
.Rproj
file that gets created:git add .Rproj git commit -m "Add .Rproj file" git push origin main
✅ Done! Your repository is ready for your partner to fork and contribute.
🍴 Step 3: Student B – Fork and Contribute
Open the repo link your partner (Student A) shared.
Click the “Fork” button (top-right corner).
On your forked copy, click Code → SSH and copy the URL.
Open your terminal and clone your fork:
git clone git@github.com:your-username/collab-demo.git
cd collab-demo
Open this folder in RStudio and edit the README file to include your name
Save the file, then stage, commit, and push:
git add README.md
git commit -m "Add line to README"
git push origin main
- Go back to your forked repository on GitHub.
Click “Compare & pull request”, then Create pull request.
✅ You’ve submitted your contribution!
✅ Step 4: Student A – Review and Merge the Pull Request
- Go to your original repository on GitHub.
- You should see a new pull request from your partner.
- Click it → Review the changes.
- Click Merge pull request, then Confirm merge.
- (Optional) Delete the branch after merging.
🎉 Your teammate’s changes are now part of the main repository!
🔁 Step 5: Switch Roles
Switch roles so both students get experience creating, forking, and merging.
🍴 Exercise 2: Fork a Public Repository and Make a Pull Request
In this exercise, you’ll practice contributing to an existing project by:
- Forking a public repository
- Making a simple contribution
- Submitting a pull request (PR)
📦 Step 1: Fork the Repository
Go to this GitHub repository:
👉https://github.com/numbats/rcp
In the top-right corner, click the “Fork” button.
GitHub will create a copy of the repo in your account.
💻 Step 2: Clone Your Fork
On your forked repository page, click the green Code button.
Select SSH, then copy the URL.
Open your terminal and run:
git clone git@github.com:your-username/rcp.git
cd rcp
📝 Step 3: Add Your File
Inside the project, you’ll see a folder called student-record
.
- Create a new file in that folder using your GitHub username. For example:
touch student-record/MikeLydeamore.md
- Open the file and add a simple message:
Hi, I’m MikeLydeamore on GitHub! Here’s my contribution to the rcp project.
- Save the file.
📬 Step 4: Commit and Push
- Stage and commit your file:
git add student-record/jamie-lee.md
git commit -m "Add jamie-lee.md to student-record"
- Push your changes to your fork:
git push origin main
✅ Step 5: Create a Pull Request
- Go back to your fork on GitHub.
- You should see a banner to “Compare & pull request” — click it.
- Confirm the changes, then click “Create pull request”
🎉 You’ve just submitted a real contribution to a public GitHub repository!
🧠 Why This Matters
This is how open-source collaboration works in the real world:
- You fork a project
- Make meaningful changes
- Propose those changes via a pull request
- Maintainers review and (hopefully!) merge your work
You’re now part of the open-source ecosystem 💪