How to review and edit a pull request

Published:

When you submit a pull request, a collaborator will have the right to review your pull request. They’ll decide whether to accept your pull request. If they accept your pull request, your code will be merged into the branch you requested for.

You’re going to learn how a review process will look like from both points of view:

  1. The person who’s reviewing the process
  2. The person who’s submitting the review

Merging the pull request

For this lesson, I’ll use the following accounts:

  1. zellwk as the reviewer
  2. zellwk2 as the person who submitted the pull request

As the reviewer, if you scroll down to the bottom of the page, you’ll see a green button that says merge pull request. You see this because you have write access to the repository.

If you want to merge the pull request, you can click on the green button and you’re done.

The merge pull request button

If you don’t have write access to the repository, you won’t see a button that says merge pull request.

Non-collaborators won't see the merge pull request button

Reviewing the pull request

As a reviewer, you’ll want to click on the files changed tab. This tells you what files have changed.

The files changed tab

You’ll come to a page with two sets of code:

  1. The left set is the current code
  2. The right set is the proposed code

You can see what code is added or removed in this view. Green lines signify code that’s added. Red lines signify code that’s removed.

The diff view

Commenting, approving, or requesting changes

The reviewer can comment, approve, or request for changes as they see fit. To do so, they can click on the review changes button on the top-right-hand corner.

If you click on the review changes button, you’ll see three options:

  1. Comment
  2. Approve
  3. Request changes
The review changes button

A better way to review

A better way to review the code is to provide feedback on the line of code that requires feedback.

You can do this by hovering over the line you want to provide feedback for. When you do so, you’ll see a blue + button.

The plus button

When you click on the blue + button, you’ll see an editor. You can comment on the line of code here.

The editor shows up after you click the plus button

There are two options:

  1. Add a single comment
  2. Start a review

If you click on add single comment, the comment will be made immediately.

If you click on start a review, you’ll have the chance to write more comments before sending them at once. To end the review, you need to click on the review changes button and select submit review.

Submitting the review

The pull request will be updated with your changes after you submit your review:

Pull request updated

Working on the pull request

The person who is submitting the pull request can also see the comments.

Pull request from the submitter's view

If you’re working on the pull request, you have to make the necessary changes. To do so, you go back to your forked repository and update the same branch you used to submit the pull request.

In this case, this will be the development branch. I went ahead and added the closing <ul> tag in the index.html file. I also set the commit message to closing <ul> appropriately.

Writing a commit message that says closing <ul> appropriately

Github will update the pull request with the new changes once the submitter pushes into the forked repository.

Pull request updated automatically after commits are pushed

The reviewer can now merge the request by clicking on the merge pull request button.

After the merge

You can delete the forked repository (or the branch you used for the pull request) after the code is merged into the main repository. They’re no longer needed.

Wrapping up

You learned how to review and edit a pull request in this lesson.

To edit a pull request, you push new changes into the same branch that was used for the pull request. Github will update everything else automatically.

Want to become a better Frontend Developer?

Don’t worry about where to start. I’ll send you a library of articles frontend developers have found useful!

  • 60+ CSS articles
  • 90+ JavaScript articles

I’ll also send you one article every week to help you improve your FED skills crazy fast!