debian-mirror-gitlab/doc/user/project/issues/index.md

136 lines
5.8 KiB
Markdown
Raw Normal View History

2017-09-10 17:25:29 +05:30
# Issues
2017-08-17 22:00:37 +05:30
2019-07-07 11:18:12 +05:30
Issues are the fundamental medium for collaborating on ideas and planning work in GitLab.
2017-08-17 22:00:37 +05:30
2019-07-07 11:18:12 +05:30
## Overview
2017-08-17 22:00:37 +05:30
2019-07-07 11:18:12 +05:30
The GitLab issue tracker is an advanced tool for collaboratively developing ideas, solving problems, and planning work.
2017-08-17 22:00:37 +05:30
2019-07-07 11:18:12 +05:30
Issues can allow you, your team, and your collaborators to share and discuss proposals before and during their implementation.
However, they can be used for a variety of other purposes, customized to your needs and workflow.
2017-08-17 22:00:37 +05:30
2019-07-07 11:18:12 +05:30
Issues are always associated with a specific project, but if you have multiple projects in a group,
you can also view all the issues collectively at the group level.
**Common use cases include:**
2017-08-17 22:00:37 +05:30
- Discussing the implementation of a new idea
2019-07-07 11:18:12 +05:30
- Tracking tasks and work status
- Accepting feature proposals, questions, support requests, or bug reports
2017-08-17 22:00:37 +05:30
- Elaborating new code implementations
2017-09-10 17:25:29 +05:30
See also the blog post "[Always start a discussion with an issue](https://about.gitlab.com/2016/03/03/start-with-an-issue/)".
2019-07-07 11:18:12 +05:30
## Parts of an issue
Issues contain a variety of content and metadata, enabling a large range of flexibility in how they are used. Each issue can contain the following attributes, though some items may remain unset.
<table class="borderless-table fixed-table">
<tr>
<td>
<ul>
<li>Content</li>
<ul>
<li>Title</li>
<li>Description and tasks</li>
<li>Comments and other activity</li>
</ul>
<li>People</li>
<ul>
<li>Author</li>
<li>Assignee(s)</li>
</ul>
<li>State</li>
<ul>
<li>Status (open/closed)</li>
<li>Confidentiality</li>
<li>Tasks (completed vs. outstanding)</li>
</ul>
</ul>
</td>
<td>
<ul>
<li>Planning and tracking</li>
<ul>
<li>Milestone</li>
<li>Due date</li>
<li>Weight</li>
<li>Time tracking</li>
<li>Labels</li>
<li>Votes</li>
<li>Reaction emoji</li>
<li>Linked issues</li>
<li>Assigned epic</li>
<li>Unique issue number and URL</li>
</ul>
</ul>
</td>
</tr>
</table>
## Viewing and managing issues
While you can view and manage the full detail of an issue at its URL, you can also work with multiple issues at a time using the Issues List, Issue Boards, Epics **[ULTIMATE]**, and issue references.
### Issue page
2019-05-30 16:15:17 +05:30
![Issue view](img/issues_main_view.png)
2019-07-07 11:18:12 +05:30
On an issues page, you can view all aspects of the issue, and you can also modify them if you you have the necessary [permissions](../../permissions.md).
2019-05-30 16:15:17 +05:30
2019-07-31 22:56:46 +05:30
For more information, see the [Issue Data and Actions](issue_data_and_actions.md) page.
2019-05-30 16:15:17 +05:30
2019-07-07 11:18:12 +05:30
### Issues list
2019-05-30 16:15:17 +05:30
2019-07-07 11:18:12 +05:30
![Project issues list view](img/project_issues_list_view.png)
2017-08-17 22:00:37 +05:30
2019-07-07 11:18:12 +05:30
On the Issues List, you can view all issues in the current project, or from multiple projects when opening the Issues List from the higher-level group context. Filter the issue list by [any search query](../../search/index.md#issues-and-merge-requests-per-project) and/or specific metadata, such as label(s), assignees(s), status, and more. From this view, you can also make certain changes [in bulk](../bulk_editing.md) to the displayed issues.
2017-08-17 22:00:37 +05:30
2019-07-31 22:56:46 +05:30
For more information, see the [Issue Data and Actions](issue_data_and_actions.md) page.
2017-08-17 22:00:37 +05:30
2019-07-07 11:18:12 +05:30
### Issue boards
2017-08-17 22:00:37 +05:30
2019-07-07 11:18:12 +05:30
![Issue board](img/issue_board.png)
2017-08-17 22:00:37 +05:30
2019-07-07 11:18:12 +05:30
Issue boards are Kanban boards with columns that display issues based on their labels or their assignees**[PREMIUM]**. They offer the flexibility to manage issues using highly customizable workflows.
2017-08-17 22:00:37 +05:30
2019-07-07 11:18:12 +05:30
You can reorder issues within a column, or drag an issue card to another column; its associated label or assignee will change to match that of the new column. The entire board can also be filtered to only include issues from a certain milestone or an overarching label.
2017-08-17 22:00:37 +05:30
2019-07-07 11:18:12 +05:30
For more information, see the [Issue Boards](../issue_board.md) page.
2017-08-17 22:00:37 +05:30
2019-07-07 11:18:12 +05:30
### Epics **[ULTIMATE]**
2019-05-30 16:15:17 +05:30
2019-07-07 11:18:12 +05:30
Epics let you manage your portfolio of projects more efficiently and with less effort by tracking groups of issues that share a theme, across projects and milestones.
2019-05-30 16:15:17 +05:30
2019-07-07 11:18:12 +05:30
For more information, see the [Epics](https://docs.gitlab.com/ee/user/group/epics/) page.
2019-05-30 16:15:17 +05:30
2019-07-07 11:18:12 +05:30
### Related issues **[STARTER]**
2019-05-30 16:15:17 +05:30
2019-07-07 11:18:12 +05:30
You can mark two issues as related, so that when viewing each one, the other is always listed in its Related Issues section. This can help display important context, such as past work, dependencies, or duplicates.
2019-05-30 16:15:17 +05:30
2019-07-07 11:18:12 +05:30
For more information, see [Related Issues](https://docs.gitlab.com/ee/user/project/issues/related_issues.html).
2017-08-17 22:00:37 +05:30
### Crosslinking issues
2019-07-07 11:18:12 +05:30
When you reference an issue from another issue or merge request by including its URL or ID, the referenced issue displays a message in the Activity stream about the reference, with a link to the other issue or MR.
2017-08-17 22:00:37 +05:30
2019-07-07 11:18:12 +05:30
For more information, see [Crosslinking issues](crosslinking_issues.md).
2017-08-17 22:00:37 +05:30
2019-07-07 11:18:12 +05:30
## Issue actions
2017-09-10 17:25:29 +05:30
2019-07-07 11:18:12 +05:30
- [Create an issue](create_new_issue.md)
- [Create an issue from a template](../../project/description_templates.md#using-the-templates)
- [Close an issue](closing_issues.md)
- [Move an issue](moving_issues.md)
- [Delete an issue](deleting_issues.md)
2019-07-31 22:56:46 +05:30
- [Create a merge request from an issue](issue_data_and_actions.md#18-new-merge-request)
2019-02-15 15:39:39 +05:30
2019-07-07 11:18:12 +05:30
## Advanced issue management
2019-02-15 15:39:39 +05:30
2019-07-07 11:18:12 +05:30
- [Bulk edit issues](../bulk_editing.md) - From the Issues List, select multiple issues in order to change their status, assignee, milestone, or labels in bulk.
- [Import issues](csv_import.md)
- [Export issues](https://docs.gitlab.com/ee/user/project/issues/csv_export.html) **[STARTER]**
- [Issues API](../../../api/issues.md)
- Configure an [external issue tracker](../../../integration/external-issue-tracker.md) such as Jira, Redmine,
2017-09-10 17:25:29 +05:30
or Bugzilla.