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  搜索某一个区间范围

 

另外,在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

 

JIRA 是由 Atlassian 开发的一款强大的项目管理与问题跟踪工具,广泛应用于软件开发领域,尤其适用于敏捷开发团队。它不仅支持需求管理、缺陷跟踪、任务管理等功能,还提供了 Scrum 和 Kanban 视图,以满足不同团队的工作流程需求。 ### JIRA 的基本概念 在深入了解 JIRA使用之前,首先需要掌握其核心概念。JIRA 的基本单位是“Issue”(问题),它可以表示任务、缺陷、需求等多种类型的工作项。每个 Issue 都可以归属于一个“Project”(项目),并且可以分配给特定的团队成员进行处理。此外,JIRA 支持自定义字段、工作流、看板、报告等功能,帮助团队更好地组织和管理项目进度[^1]。 ### 创建与管理项目 在 JIRA 中创建项目非常简单。用户可以选择创建 Scrum 项目或 Kanban 项目,根据团队的开发方法选择合适的模板。创建项目后,可以添加团队成员、设置权限、配置工作流、创建看板等。JIRA 还支持多种视图,如待办事项列表、燃尽图、累积流图等,帮助团队实时掌握项目状态。 ### Issue 的创建与跟踪 在 JIRA 中,Issue 是工作的基本单元。创建 Issue 时,可以指定其类型(如任务、子任务、Bug、Story 等)、优先级、负责人、截止日期等信息。Issue 可以被分配到不同的状态(如待办、进行中、已完成),并通过工作流进行流转。团队成员可以在 Issue 中添加评论、附件、链接,甚至设置提醒,以便于协作与沟通。 ### 查询与过滤 JIRA 提供了强大的查询语言(JQL,JIRA Query Language),允许用户通过编写查询语句来筛选特定的 Issue。例如,可以查询某个项目中所有未解决的 Bug,或者某个时间段内完成的任务。JQL 支持复杂的条件组合,如字段比较、逻辑运算、函数调用等。以下是一个示例 JQL 查询语句: ```sql issuetype = Story AND project in (项目名称) AND status in (测试产线验证通过, 已上线) AND 实际上线日期 >= 2023-1-1 AND 实际上线日期 < 2023-2-1 AND (issueFunction in expression("", "(实际上线日期-1)<= 计划上线日期+1") OR 计划上线日期 is EMPTY) ``` 该查询用于筛选特定项目中在 2023 年 1 月上线的 Story,并满足上线日期与计划日期的偏差条件[^2]。 ### 敏捷开发支持 JIRA 对敏捷开发提供了深度支持,特别是在 Scrum 和 Kanban 方法中。用户可以创建 Sprint,将 Issue 分配到不同的 Sprint 中,并通过燃尽图监控进度。Kanban 板则允许用户通过拖拽方式管理任务的状态变更,支持限制在制品数量(WIP)等功能,帮助团队优化流程效率。 ### 报告与分析 JIRA 提供了丰富的报告功能,包括 Sprint 报告、燃尽图、Issue 分布图、团队绩效图等。这些报告可以帮助项目经理和团队成员更好地理解项目进度、识别瓶颈,并做出数据驱动的决策。 ### 插件与集成 JIRA 支持广泛的插件生态,用户可以通过安装插件来扩展其功能,如集成 Git、Confluence、CI/CD 工具、自动化流程等。Atlassian Marketplace 提供了大量官方和第三方插件,满足不同团队的需求。 ### 自定义与配置 JIRA 允许高度自定义,包括字段、屏幕、工作流、权限方案等。管理员可以根据团队的具体需求,调整工作流规则、设置自动化规则、配置通知方案等,以确保 JIRA 能够完美匹配团队的工作流程。 ---
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值