Codepath

Git Pull Requests

Introduction

Pull Requests (PRs) are a fundamental collaboration tool in modern software development. They provide a structured way to propose changes, review code, discuss improvements, and merge new features into your project. This guide explains what pull requests are, how to create them, best practices for managing them, and solutions to common issues.

🎥 Video: GitHub Pull Request in 100 Seconds (2 mins) - A clear introduction to the pull request workflow

What is a pull request?

A pull request is a method of submitting contributions to a project. It's called a "pull request" because you're asking the project maintainers to "pull" your changes into their repository. Pull requests are not a core Git feature but are implemented by hosting platforms like GitHub, GitLab, and Bitbucket.

Pull requests offer several important benefits:

  • Code review: Team members can review proposed changes before they're merged
  • Discussion: Provides a forum for discussing changes and suggesting improvements
  • Quality control: Helps maintain code quality through review and automated checks
  • Documentation: Creates a record of why and how changes were made
  • Collaboration: Enables contributions from both team members and external contributors

Diagram: Pull Request Lifecycle

The Pull Request Lifecycle

  1. Branch creation: A developer creates a branch to work on a specific feature or fix
  2. Code changes: The developer makes and commits changes to their branch
  3. PR creation: The developer creates a pull request to propose merging their changes
  4. Review: Other team members review the code, suggest changes, and discuss implementation
  5. Iteration: The original developer makes requested changes and pushes updates
  6. Approval: Reviewers approve the changes once they meet requirements
  7. Merge: The changes are merged into the target branch (usually main/master)
  8. Cleanup: The feature branch is typically deleted after merging

Diagram: Pull Request Lifecycle

Types of Pull Requests

Pull requests can serve different purposes:

  • Feature PRs: Adding new functionality to the codebase
  • Bug fix PRs: Correcting issues in the existing code
  • Refactoring PRs: Improving code structure without changing functionality
  • Documentation PRs: Adding or improving documentation
  • Dependency updates: Updating project dependencies

Tutorial: Creating a PR

There is a great tutorial on the readme of this repo on making your first contribution. It's a great way to learn how to create a PR.

PR Best Practices

Following these best practices will make the pull request process smoother and more effective:

🎥 Video: How to do coding peer reviews with Github (12 mins) - How to conduct effective code reviews

For PR Authors

  1. Keep PRs focused and small: Each PR should address a single concern
✅ "Add user authentication feature"
❌ "Add authentication, profile page, and settings"
  1. Write descriptive titles and descriptions: Clearly explain what the PR does and why. Descriptions fully support markdown, so you can include screenshots, links, and other information!
Title: Add password reset functionality

Description:
- Adds an API endpoint for requesting password resets
- Creates email templates for reset instructions
- Implements a secure token-based reset mechanism
- Includes unit and integration tests

Fixes #234

💡 Tip: If you're using GitHub Projects, you can add fixes #<issue-number> to the PR description to automatically close the issue when the PR is merged. There are numerous other integrations with GitHub that can automate things in this way.

  1. Include context and screenshots: Provide enough information for reviewers to understand your changes
Before:
[Screenshot of old UI]

After:
[Screenshot of new UI]

This redesign improves mobile usability by 35% in our user testing.
  1. Ensure CI checks pass: Fix any failing tests or linting issues before requesting review

  2. Respond promptly to feedback: Address review comments in a timely manner

  3. Keep the PR updated: Regularly merge or rebase from the target branch to avoid conflicts

# Keep your PR up to date with main
$ git checkout main
$ git pull
$ git checkout feature/my-feature
$ git rebase main
$ git push --force-with-lease
  1. Mark conversations as resolved: Use GitHub's "resolve conversation" feature to track addressed feedback

For PR Reviewers

  1. Be timely: Review PRs promptly to avoid blocking team members

  2. Be thorough: Check for bugs, edge cases, and adherence to coding standards

  3. Focus on important issues: Distinguish between critical problems and minor stylistic preferences

  4. Be constructive: Phrase feedback as suggestions rather than commands

✅ "We could improve performance by caching this result"
❌ "This is inefficient and poorly implemented"
  1. Ask questions: If something isn't clear, ask for clarification rather than assuming

  2. Provide examples: When suggesting changes, provide code examples when possible

  3. Recognize good work: Point out well-implemented parts, not just issues

PR Templates

Using PR templates can help standardize the information included in pull requests. Create a file named PULL_REQUEST_TEMPLATE.md in your repository's .github folder, and it will automatically appear in the PR description for any PRs you create.

## Description
[Describe the changes you've made]

## Type of change
- [ ] Bug fix
- [ ] New feature
- [ ] Breaking change
- [ ] Documentation update

## How Has This Been Tested?
[Describe the testing process]

## Checklist:
- [ ] My code follows the style guidelines of this project
- [ ] I have performed a self-review of my own code
- [ ] I have commented my code in hard-to-understand areas
- [ ] I have made corresponding changes to the documentation
- [ ] My changes generate no new warnings
- [ ] I have added tests that prove my fix is effective or that my feature works

Common Issues & Fixes for PRs

Even with the best practices, you may encounter issues with pull requests. Here are some common problems and their solutions:

1. Merge Conflicts

Merge conflicts occur when changes in your branch conflict with changes in the target branch.

Symptoms:

  • GitHub shows "This branch has conflicts that must be resolved"
  • You cannot merge until the conflicts are resolved

Fix:

# Get the latest from the target branch
$ git checkout main
$ git pull

# Switch back to your branch
$ git checkout feature/my-feature

# Rebase on main
$ git rebase main

# Resolve conflicts in your editor, then
$ git add .
$ git rebase --continue

# Push the changes (force required after rebase)
$ git push --force-with-lease

Diagram: git flow of merging with conflicts

⚠️ Warning: Always use --force-with-lease instead of --force to avoid accidentally overwriting others' work.

2. Too Many Commits

If your PR has too many small, messy commits, reviewers might ask you to clean up the history.

Fix:

Start an interactive rebase session to squash or reword commits.

# Interactive rebase to clean up commits
$ git checkout feature/my-feature
$ git rebase -i HEAD~5  # Replace 5 with the number of commits to include

# In the editor, mark commits to squash (s) or reword (r)
# Example in the editor:
# pick abc1234 Add login feature
# s def5678 Fix typo
# s ghi9012 Another small fix
# r jkl3456 Fix validation logic

# After saving, you'll be prompted to edit commit messages
# After completing the rebase:
$ git push --force-with-lease

3. PR Based on the Wrong Branch

Sometimes you might accidentally base your PR on the wrong branch.

Symptoms:

  • The PR shows changes that aren't yours or is missing expected changes
  • The "base" branch in GitHub is not what you intended

Fix:

# If you need to change the base branch of your PR
# Method 1: On GitHub, edit the PR and change the base branch

# Method 2: Git rebase approach
$ git checkout feature/my-feature
$ git rebase --onto correct-base-branch original-base-branch
$ git push --force-with-lease

4. Committed Sensitive Information

It's important to be careful about accidentally committing sensitive data like API keys or passwords. If you do, you should immediately tell your teammates and work together with them to remove it.

⚠️ Warning: This doesn't remove data from the PR history on GitHub. Contact repository administrators to remove sensitive data from GitHub history.

Initial Steps:

# To remove sensitive data
$ git checkout feature/my-feature
$ git filter-branch --force --index-filter \
  "git rm --cached --ignore-unmatch path/to/sensitive/file" \
  HEAD

# Or for a specific commit:
$ git rebase -i HEAD~3  # Go back to before the problematic commit
# Mark the commit as 'edit' in the rebase list
# Make your changes, removing sensitive data
$ git add .
$ git commit --amend
$ git rebase --continue
$ git push --force-with-lease

5. CI/CD Failures

Continuous Integration (CI) checks may fail on your PR.

Symptoms:

  • Red X marks or failed status checks on your PR
  • Automated comments about failing tests or linting issues

Fix:

  1. Click on the failed check for details about why it failed
  2. Make the necessary fixes locally
  3. Commit and push the changes to your branch
  4. The CI checks will automatically run again
# Fix CI failures
$ git checkout feature/my-feature
# Make necessary changes based on CI feedback
$ git add .
$ git commit -m "Fix failing tests"
$ git push origin feature/my-feature

Working with PR Reviews

Addressing Review Comments

When reviewers leave comments on your PR, you should address each one:

# Make changes to address comments
$ git add changed-files
$ git commit -m "Address review feedback: improve error handling"
$ git push origin feature/my-feature

On GitHub, you can:

  1. Reply to comments
  2. Mark conversations as resolved when addressed
  3. Re-request review after you've made changes

Requesting Specific Reviewers

You can request specific team members to review your PR:

  1. When creating the PR, use the "Reviewers" sidebar
  2. Select individuals or teams to review your code

Collaborative PR Refinement

Sometimes the best approach emerges through collaboration:

  1. Use GitHub's suggestion feature to propose specific code changes
  2. Discuss alternatives in comment threads
  3. Use review comments to explain your reasoning or ask questions
  4. Remember that the goal is to improve the codebase, not to "win" a debate

💡 Tip: If a discussion gets complex, consider hopping on a quick call or chat to resolve issues more efficiently, then document the outcome in the PR.

Fork me on GitHub