Jira的使用

基本操作

1.换行不自动编号的话,使用shift+enter
2.图片可以直接复制到编辑框
3.附件的删除,直接在主目录里。主目录默认为Details,Description,Attachments,Tempo,Activity
4.拆分工作,在顶部导航栏中,找到Tempo下的Timesheets
顶部导航栏为Dashboards,Projects,Issues,Tempo,Boards,Create

Assignee ,Reporter,

JIRA Assignee is typically the account that is working on the JIRA issue.
JIRA Reporter is usually auto-poppulated for whoever created the JIRA issue.
JIRA Notifications (emails) are usually controlled on whatever JIRA Notification schemes it is configured to use.

Assignee — the person to whom the issue is currently assigned.
Reporter— the person who entered the issue into the system.
...which would indicate that the reporter should also be the assignee when an issue is resolved, but - then JIRA Concepts says this:
Resolved — A Resolution has been identified or implemented, and this issue is awaiting verification by the reporter. From here, issues are either 'Reopened' or are 'Closed'.

Status 和 Resolution

https://community.atlassian.com/t5/Answers-Developer-Questions/What-Is-The-Relation-between-Status-And-resolution/qaq-p/491536

https://confluence.atlassian.com/display/JIRA/Defining+Resolution+Field+Values

Resolutions are the ways in which an issue can be closed. 

只有设置了resolution,才可以把status设置成closed

https://confluence.atlassian.com/display/JIRA/Defining+Status+Field+Values

Statuses are used to represent the position of the issue in its workflow.

公司里面的status的状态,open,active,closed,reopened,resolved

搜索语法

https://confluence.atlassian.com/jirasoftwareserver073/advanced-searching-861256227.html

https://community.atlassian.com/t5/JIRA-questions/Jira-issue-filter-contain-text-with-partial-words/qaq-p/136642

https://confluence.atlassian.com/jirasoftwarecloud/search-syntax-for-text-fields-764478343.html

project = RDC-LISA-Chile and reporter = jozheng and summary ~ "point*"

project = RDC-LISA-Chile  and summary ~ "point*" and status!=Closed  ORDER BY  issuekey DESC

project = RDC-LISA-Chile  and reporter = clu and status!=Closed  ORDER BY  issuekey DESC

project = RDC-LISA-Chile and issuekey =RDCLISACL-356

project = RDC-LISA-Roadmap and text ~ "without hotfix"

project = RDC-LISA-Chile-Scrum AND assignee = clu and created >= startOfMonth(-2) and created <=endOfMonth(-2)   搜索上一个月的issue

reporter = clu AND createdDate <= "2017-12-31 " AND createdDate >= 2017-10-01  搜索某一个时间段内的issue

assignee = clu and createdDate >= '2018-12-01' ORDER BY createdDate asc

另外,在confluence中进行搜索的时候,也需要使用通配符。比如搜索cmscontext,需要这么搜索cmscontex*,如果搜索的话,cmscontext.geturl是会被过滤掉的。标点被截断

 https://confluence.atlassian.com/conf66/confluence-search-syntax-943962309.html

Leading wildcards

Lucene doesn't allow wildcards at the beginning of your search, but you can format your search as a regular expression as a workaround.

For example, you can't search for *hum* or ?hum*, as they begin with a wildcard, but you can search for /.*hum.*/ and find things like hum, human, and inhumane.

所以,搜索的时候使用/.*cmscontext.*/ 和/.*settingsprovider.*/ 

如果搜索2个单词的话,可以直接搜索"v6-master",不需要使用上面的通配符

Workflow

https://confluence.atlassian.com/adminjiraserver073/working-with-workflows-861253510.html

原文地址:https://www.cnblogs.com/chucklu/p/6951639.html