Back to tips
Create Pull Requests from Zed
Open PRs directly from the editor without leaving your workflow
Zed now includes a built-in command to create pull requests for your current branch, streamlining your Git workflow without switching to the browser.
How to Use
- Ensure you’re on the branch you want to create a PR for
- Open the command palette with
Cmd+Shift+P(macOS) orCtrl+Shift+P(Linux/Windows) - Type “git: create pull request”
- Press
Enter
Zed will open your default browser with the PR creation page pre-filled with your branch information.
Requirements
- Your branch must be pushed to the remote repository
- Works with GitHub, GitLab, and other platforms that support PR URLs
- Automatically detects your repository’s remote URL
Workflow
- Make your changes in Zed
- Stage and commit using the Git panel (
Cmd+Shift+G) - Push to remote from the terminal
- Create PR with
git: create pull requestcommand
No more context switching between editor, terminal, and browser!