All Projects → microsoft → Vscode Pull Request Github

microsoft / Vscode Pull Request Github

Licence: mit
GitHub Pull Requests for Visual Studio Code

Programming Languages

typescript
32286 projects
CSS
56736 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Vscode Pull Request Github

Code Review Checklist
This code review checklist helps you be a more effective and efficient code reviewer.
Stars: ✭ 214 (-87.9%)
Mutual labels:  pull-requests, code-review
quickreview-for-github
Reviewing 50+ Pull Requests a day is no fun. Automate it with keyboard shortcuts.
Stars: ✭ 28 (-98.42%)
Mutual labels:  code-review, pull-requests
critiq.vim
Github code reviews from Neovim
Stars: ✭ 69 (-96.1%)
Mutual labels:  code-review, pull-requests
clang-tidy-pr-comments
Turn clang-tidy warnings and fixes to comments in your pull request
Stars: ✭ 24 (-98.64%)
Mutual labels:  code-review, pull-requests
auto-request-review
A GitHub Action that automatically requests review of a pull request based on files changes and/or groups the author belongs to 🤖
Stars: ✭ 52 (-97.06%)
Mutual labels:  code-review, pull-requests
Codestream
The Code Collaboration Tool Built for Remote Teams
Stars: ✭ 459 (-74.05%)
Mutual labels:  vscode, code-review
Ubuntu On Steroids
Developer setup & configuration guide for Ubuntu.
Stars: ✭ 111 (-93.73%)
Mutual labels:  vscode
Vscode Sqlite
VSCode extension to explore and query SQLite databases.
Stars: ✭ 116 (-93.44%)
Mutual labels:  vscode
I18n Ally
🌍 All in one i18n extension for VS Code
Stars: ✭ 1,931 (+9.16%)
Mutual labels:  vscode
Vscode Js Annotations
Javascript / Typescript Parameter Annotations for Visual Studio Code
Stars: ✭ 110 (-93.78%)
Mutual labels:  vscode
Gitpay
Bounties for issues on demand. Be rewarded by learning, using Git workflow and continuous integration
Stars: ✭ 121 (-93.16%)
Mutual labels:  pull-requests
Vscode Language Pascal
Pascal language extension for Visual Studio Code
Stars: ✭ 117 (-93.39%)
Mutual labels:  vscode
Vscode
VSCode file specific icons for improved visual grepping
Stars: ✭ 115 (-93.5%)
Mutual labels:  vscode
Vscode Mermaid Preview
Previews Mermaid diagrams
Stars: ✭ 111 (-93.73%)
Mutual labels:  vscode
Luacoderassist
vscode lua assistant intelligent
Stars: ✭ 116 (-93.44%)
Mutual labels:  vscode
Vscode Azure Blockchain Ethereum
Blockchain extension for VS Code
Stars: ✭ 111 (-93.73%)
Mutual labels:  vscode
Vscode Verilog Hdl Support
Verilog HDL/SystemVerilog/Bluespec SystemVerilog support for VS Code
Stars: ✭ 120 (-93.22%)
Mutual labels:  vscode
Vscode
Unibeautify for VSCode
Stars: ✭ 110 (-93.78%)
Mutual labels:  vscode
Git Pull Request
Send git pull requests via command line
Stars: ✭ 115 (-93.5%)
Mutual labels:  pull-requests
Vscode Apielements
VSCode extensions for API Elements (aka: API Blueprint and Swagger)
Stars: ✭ 117 (-93.39%)
Mutual labels:  vscode

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. GitHub Enterprise is supported by the community, please see this PR for how to set it up.
  • 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!

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

Total alerts

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

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].