JetBrains Rider 2025.3 Help

Create and merge GitHub pull requests

Pull requests are used in open-source projects or in some corporate workflows to manage changes from contributors and to initiate code review before such changes are merged.

By creating a pull request, you tell others about the changes you want to push to the original repository so that the maintainers of that repository can review your changes, discuss them, and integrate them into the base branch.

As a pull request author, you can manage your pull request lifecycle directly within JetBrains Rider:

  1. Create a pull request.

  2. View details of your pull request in the Pull Requests tool window.

  3. Work with received feedback and comments from your reviewer.

  4. Merge or close your pull request.

Create a pull request

  1. In the main menu, go to Git | GitHub | Create Pull Request. The Pull Requests tool window opens with a pull request draft.

    Pull Requests tool window with a new pull request

    Alternatively, open the Pull Requests tool window and click Plus Create Pull Request… in the top-right corner.

  2. The repository on the left is the base repository that will receive the updates.

    Click its name and select the branch to which you want to apply your changes.

    Base repository popup
  3. The repository on the right is the head repository with the changes that will be added to the base repository.

    Click its name and select the branch that contains the changes you want to apply.

    Head repo popup

    If you have a project that uses multiple remote repositories, you can change the head repository in this popup as well.

  4. Double-click the name of any file to open the Diff view and review the changes you are about to submit.

  5. Specify the name for your pull request in the Title field, and, optionally, provide a description of the changes to be applied through your request.

  6. Optionally, add reviewers, assign your pull request to someone, or add a label to your pull request.

  7. Click Create Pull Request.

    If you are not yet ready to push your pull request, you can save it as a draft.

    • Click Chevron Down next to the Create Pull Request button.

    • In the menu that opens, select Create Draft Pull Request.

    Your pull request will appear in the GitHub repository as a draft. You can come back to it later by choosing Git | GitHub | View Pull Requests in the main menu.

If you have a pull_request_template.md file, JetBrains Rider should add the template description to your pull requests. For more information about templates, refer to GitHub documentation.

View details of your pull request

After creating a pull request, you can always find it in the Pull Requests tool window.

To open the Pull Requests tool window, select Git | GitHub | View Pull Requests in the main menu.

GitHub Pull Requests tool window

In the Pull Requests tool window, you can:

  • Filter requests by state, author, label, assignee, and review status.

  • Sort pull requests by their activity status: newest, oldest, most or least commented, recently or least recently updated.

  • Jump to a pull request on GitHub: select a pull request and choose Open Pull Request in Browser from the context menu.

When you double-click a pull request from the list, you can see the overview and timeline tabs.

Pull Requests tab with an open pull request

In this view, you can:

  • View the timeline of a selected pull request to track its progression.

  • Select a particular commit to filter the list of changes.

  • Create a local branch based on incoming changes: open a pull request, click the branch with incoming changes, and choose Checkout 'branch name' in the context menu.

To learn about more options, refer to Review a pull request.

Work with received feedback

When you send your pull request for a review, you can get comments or suggestions with regard to your changes. You can view and apply them directly from JetBrains Rider.

  1. In the main menu, go to Git | GitHub | View Pull Requests.

  2. In the list of pull requests, select the one you want to work with and double-click it.

    JetBrains Rider opens an overview of the selected pull request.

    Pull request overview
  3. Click the branch with incoming changes and choose Checkout 'branch name' in the context menu.

    Checkout option in the pull request overview

    By checking out the branch, you get the full context to test the changes suggested by your reviewer and check how they work.

    After the successful checkout, JetBrains Rider starts the Review mode. That means you can see the highlighted changes and comments not only in the Diff tab (Ctrl+D), but right in the editor (F4).

  4. Select the file you want to investigate, right-click it and select Jump to Source F4 from the context menu.

    In the file that opens, pink markers in the gutter indicate the changes you have made and the comments left by your reviewer.

    You can resolve a comment, reply to it, or leave your reaction.

    Navigate between the comments by using the Up button/the Down button in the upper toolbar or pressing Ctrl+Alt+Up/Ctrl+Alt+Down.

  5. If the reviewer has left a suggestion, you will see the diff between your code and suggested one and can either Apply locally (applies a patch to the working copy) or Commit (opens a commit message pop-up).

  6. After you finished working on the pull request, you can re-request review, merge the pull request, or close it.

    Pull requests tool window with an option to re-request review

Merge or close a pull request

If you have push access to the repository, you can merge your pull request when work is complete.

  1. In the main menu, go to Git | GitHub | View Pull Requests.

  2. In the list of pull requests, select the one you want to work with and double-click it.

  3. At the bottom of the overview, there is a button with merge options that differ depending on the stage of the review process and your push access rights.

    Pull request overview with merge options
    • If you have approved the updates after your review, you can merge the pull request by clicking Merge.

      For more merge options, click the Down arrow and select Squash and Merge to squash the commits with your changes into one before merging them or Rebase to rebase the commits from the pull request branch and add them to the base branch.

    • Click More and select Request Review if you need another opinion on this pull request or Close Pull Request if you do not want to merge it.

    • If you are ready to merge the pull request without submitting your review, in the pull request overview, click More | Merge Review and select Merge, Squash and Merge, or Rebase.

      Merge options available before submitting review
02 December 2025