Workflow

https://confluence.atlassian.com/adminjiracloud/configuring-workflow-schemes-776636598.html

Project screens, schemes and fields

https://confluence.atlassian.com/adminjiraserver071/project-screens-schemes-and-fields-802592517.html

Using Filters

https://confluence.atlassian.com/jira064/using-filters-720416526.html#UsingFilters-managing_filters

Customize your dashboard

https://confluence.atlassian.com/jira064/customizing-the-dashboard-720416837.html

Managing Components

https://confluence.atlassian.com/adminjiraserver073/managing-components-861253335.html

Project Roles

https://confluence.atlassian.com/adminjiracloud/managing-project-roles-776636382.html#Managingprojectroles-project_role_add

Managing project permissions

https://confluence.atlassian.com/adminjiracloud/managing-project-permissions-776636362.html#Managingprojectpermissions-permission_schemes

Subcomponents and Component Versions

https://marketplace.atlassian.com/plugins/net.brokenbuild.subcomponents/server/overview

https://www.atlassian.com/blog/jira-software/organize-jira-issues-subcomponents

Configuring Quick Filters

https://confluence.atlassian.com/agile/jira-agile-user-s-guide/configuring-a-board/configuring-quick-filters

JIRA JQL function

https://confluence.atlassian.com/jirasoftwarecloud/advanced-searching-functions-reference-764478342.html#Advancedsearching-functionsreference-subtaskIssueTypessubtaskIssueTypes()

JIRA Import Via CSV

https://confluence.atlassian.com/display/JIRA051/Importing+Data+from+CSV#ImportingDatafromCSV-AllowingcommentsinCSVfiles

  How to Import Issue Links from a CSV File

  https://confluence.atlassian.com/jirakb/how-to-import-issue-links-from-a-csv-file-740262715.html

  Jira import Issues via CSV. Comments missing

  https://stackoverflow.com/questions/38722380/jira-import-issues-via-csv-comments-missing

Manage Requirements in Confluence

  https://confluence.atlassian.com/doc/blog/2015/08/how-to-document-product-requirements-in-confluence

  https://docs.stiltsoft.com/display/public/TableFilter/How+to+use+Table+filter+macro

  https://marketplace.atlassian.com/apps/27447/table-filter-and-charts-for-confluence?hosting=cloud&tab=overview

  https://confluence.atlassian.com/confkb/how-do-i-get-more-statistics-from-confluence-154239308.html

  https://community.atlassian.com/t5/Agile-discussions/Using-Jira-vs-Confluence-for-User-Story-source-of-truth/td-p/731032

JIRA reference的更多相关文章

  1. [Tools]迁移Confluence, JIRA, Fisheye

    [背景] 原先的Confluence, JIRA, Fisheye都部署在一台服务器(192.168.200.203)上,导致这台机器太卡,公司又分配了两台虚拟机来分开这几个应用(192.168.20 ...

  2. Confluence, JIRA, Fisheye

    [tools]迁移Confluence, JIRA, Fisheye   [背景] 原先的Confluence, JIRA, Fisheye都部署在一台服务器(192.168.200.203)上,导致 ...

  3. Hibernate Validator 6.0.9.Final - JSR 380 Reference Implementation: Reference Guide

    Preface Validating data is a common task that occurs throughout all application layers, from the pre ...

  4. Jira与Confluence集成、授权信息查看和问题汇总

    上一篇文章详细阐述了jira和confluence的安装部署和相关配置的操作记录,也介绍了两者之间其中一种集成方式:下面介绍另外的集成方式. 安装部署jira和confluence的顺序是,先安装ji ...

  5. Sqoop export(Hive to MySQL) 的一些 reference

    之后可能会整理成文章..还有一些坑没趟完. Reference: https://cloud.tencent.com/developer/article/1078473  Sqoop抽取Hive Pa ...

  6. confluence与jira账号对接、查看到期时间及问题总结

    前面介绍了对于confluence和jira的破解版安装记录,下面简单记录下confluence和jira结合配置:安装顺序:先安装Jira,然后安装Confluence,在Confluence安装过 ...

  7. 学习笔记之Jira

    Jira | Issue & Project Tracking Software | Atlassian https://www.atlassian.com/software/jira The ...

  8. Logstash Reference Getting started with Logstash

    进阶功能_Logstash_数据采集_用户指南_日志服务-阿里云 https://help.aliyun.com/document_detail/49025.html Logstash Referen ...

  9. ERROR: Found lingering reference file hdfs

    Found lingering reference异常 ERROR: Found lingering reference file hdfs://jiujiang1:9000/hbase/month_ ...

随机推荐

  1. Java--异常与字符串

    1.处理异常 try-catch以及try-catch-finally try{ //一些会抛出的异常 }catch(Exception e){ //处理该异常的代码块 }catch(Exceptio ...

  2. JSTL前台报错

    报错信息: jsp页面报错 Can not find the tag library descriptor for "http://java.sun.com/jsp/jstl/core&qu ...

  3. MFC实现COM组件

    一般而言,ATL实现了对COM组件最好的支持,所以不用MFC实现COM组件.但是MFC实际上也是可以实现COM组件的. 一.MFC DLL优点: MFC com组件可以将MFC的类型作为参数进行传递, ...

  4. BZOJ3812 清华集训2014 主旋律

    直接求出强联通生成子图的数量较难,不妨用所有生成子图的数量减去非强联通的. 非强联通生成子图在所点后满足编号最小的点所在的强联通分量不是全集. 由于$n$很小,我们可以考虑状态压缩. 对于点集$S$, ...

  5. px-rem自适应转换(进阶@rem:40rem; )

    接力之前的文章 https://www.cnblogs.com/leshao/p/5674710.html 这篇文章讲解的是px -rem 单位换算 除100的  写法 比如实际测量PSD宽度是500 ...

  6. JS数组的sort排序

    数组sort方法排序var aa=[6,2,1,5]//默认是从小到大排序aa.sort()[1, 2, 5, 6] //下面也是从小到大排序aa.sort(function(a,b){return ...

  7. BZOJ1660:[USACO2006NOV]Bad Hair Day

    浅谈栈:https://www.cnblogs.com/AKMer/p/10278222.html 题目传送门:https://lydsy.com/JudgeOnline/problem.php?id ...

  8. 关系运算符 逻辑运算符 if 语句 switch语句

    1. BOOL类型 BOOL isRightOrNo = YES; isRightOrNo = 56;//可以打印出来,在C语言中,非0即真 printf("%d\n" , isR ...

  9. nginx中给目录增加密码保护实现程序

    一款nginx中给目录增加密码保护实现程序,可以有效的保护一些目录不被访问,有需要的朋友可参考一下. 了防止一些可能出现存在漏洞的后台脚本暴露,使用验证的方式保护这些文件所在的目录 使用apache的 ...

  10. phpMailer在CentOS 6.5下无法发送邮件的解决办法

    作者:ffsystem 网站在Windows平台上开发测试,完成了后同步到CentOS6.5 Nigix运行.发现phpMailer组件无法与SMTP服务器建立连接,导致无法发送邮件. 错误代码: p ...