Skip to content

microsoft/vscode-pull-request-github

This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Folders and files

NameName
Last commit message
Last commit date
Oct 20, 2023
Apr 14, 2023
Dec 12, 2023
Dec 12, 2023
Oct 15, 2024
Jul 22, 2024
Sep 2, 2024
Feb 20, 2024
Mar 18, 2024
Oct 16, 2024
Oct 4, 2024
Feb 22, 2021
Dec 18, 2023
Feb 22, 2021
Feb 22, 2021
Feb 22, 2021
Feb 22, 2021
Jul 20, 2021
Feb 24, 2021
Feb 16, 2023
Feb 22, 2021
Sep 30, 2024
Feb 10, 2022
Jan 12, 2023
Jun 14, 2022
Apr 18, 2024
Sep 2, 2022
Apr 18, 2024
Oct 16, 2024
Oct 15, 2024
Feb 22, 2021
Feb 22, 2021
Feb 22, 2021
Jun 11, 2021
Feb 24, 2021
Feb 24, 2021
Jul 8, 2022
Aug 8, 2023
Oct 15, 2024

Repository files navigation

Build Status

Review and manage your GitHub pull requests and issues directly in VS Code

This extension allows you to review and manage GitHub pull requests and issues in Visual Studio Code. The support includes:

  • Authenticating and connecting VS Code to GitHub and GitHub Enterprise.
  • Listing and browsing PRs from within VS Code.
  • Reviewing PRs from within VS Code with in-editor commenting.
  • Validating PRs from within VS Code with easy checkouts.
  • Terminal integration that enables UI and CLIs to co-exist.
  • Listing and browsing issues from within VS Code.
  • Hover cards for "@" mentioned users and for issues.
  • Completion suggestions for users and issues.
  • A "Start working on issue" action which can create a branch for you.
  • Code actions to create issues from "todo" comments.

PR Demo

Issue Demo

Getting Started

It's easy to get started with GitHub Pull Requests for Visual Studio Code. Simply follow these steps to get started.

  1. Install the extension from within VS Code or download it from the marketplace.
  2. Open your desired GitHub repository in VS Code.
  3. A new viewlet will appear on the activity bar which shows a list of pull requests and issues.
  4. Use the button on the viewlet to sign in to GitHub.
  5. You may need to configure the githubPullRequests.remotes setting, by default the extension will look for PRs for origin and upstream. If you have different remotes, add them to the remotes list.
  6. You should be good to go!

Check out https://www.youtube.com/watch?v=LdSwWxVzUpo for additional getting started tips!

Configuring the extension

There are several settings that can be used to configure the extension.

As mentioned above, githubPullRequests.remotes is used to specify what remotes the extension should try to fetch pull requests from.

To customize the pull request tree, you can use the githubPullRequests.queries setting. This setting is a list of labels and search queries which populate the categories of the tree. By default, these queries are "Waiting For My Review", "Assigned To Me", and "Created By Me". An example of adding a "Mentioned Me" category is to change the setting to the following:

"githubPullRequests.queries": [
	{
		"label": "Waiting For My Review",
		"query": "is:open review-requested:${user}"
	},
	{
		"label": "Assigned To Me",
		"query": "is:open assignee:${user}"
	},
	{
		"label": "Created By Me",
		"query": "is:open author:${user}"
	},
	{
		"label": "Mentioned Me",
		"query": "is:open mentions:${user}"
	}
]

Similarly, there is a setting to configure your issues queries: githubIssues.queries.

Queries use GitHub search syntax.

To view additional settings for the extension, you can open VS Code settings and search for "github pull requests".

Issues

This extension is still in development, so please refer to our issue tracker for known issues, and please contribute with additional information if you encounter an issue yourself.

Questions? Authentication? GitHub Enterprise?

See our wiki for our FAQ.

Contributing

If you're interested in contributing, or want to explore the source code of this extension yourself, see our contributing guide, which includes: