Git Integration for Jira Cloud Documentation

JQL Searching for Commits and Pull Requests

Access JQL searching via Issues and FiltersSearch Issues.

Limitation
Only Jira Company-managed projects support development JQL searching. Team-managed projects are not currently supported.

 

JQL: Commits

Use the following JQL syntax to locate all Jira issues with at least one commit:

development[commits].all > 0
JQL to find issues with at least one commit

Example: Find all issues with more than 15 commits:

development[commits].all > 15

 

JQL: Pull Requests

Use the following JQL syntax to locate all Jira issues with at least one pull request:

development[pullrequests].all > 0
development[pullrequests].open > 0 (to search for open pull requests only)
JQL to find issues with at least one pull request

 

Examples

Find all issues with more than 5 open or merged pull requests:

development[pullrequests].all > 5

Find all issues with any open pull requests:

development[pullrequests].open > 0

 

More related topics on Jira Development Information

Last updated: December 2025

Have feedback about this article? Did we miss something? Let us know!
On this page