JQL
Show tickets created by a user
This will also show them in descending order, which will give you the most recently created issues first.
reporter = <username> order by created DESC
Query by project
project = "Project Name"
Find issues belonging to an inactive user
reporter in (inactiveUsers())
Search via text
text ~ "thing to search for"
Searching for multiple criteria
project = "Project Name" AND text ~ "something"
Get all bugs linked with a task (PROJECT-1234)
issuetype = Bug AND issue in linkedIssues(PROJECT-1234)
Change existing issue type
For example, if you create a bug that should be a task, you can do the following:
- Open the issue you want to change
- Click More
- Click Move
- Specify the New Issue Type
- Click Next »
- Click Next »
- Click Move
Resources:
- https://confluence.atlassian.com/jiracoreserver073/moving-an-issue-861257345.html
- https://community.atlassian.com/t5/Jira-questions/How-can-I-change-an-issue-type-after-the-issue-has-been-created/qaq-p/116076
Weird formatting issues after saving
If your description keeps getting screwed up after you save something you’ve change in the description, be sure to click the Edit button instead of editing it inline.