I'm kind of new to Git and I'm using a GitLab repository to track my issue list. I wanted to create milestones but I can not find where. Are milestones and issue tracking part of the git itself and not of Gitlab?
EDIT: This is my milestones page screenshot: There is no new Milestone button on it
Milestones in GitLab are a way to track issues and merge requests created to achieve a broader goal in a certain period of time. Milestones allow you to organize issues and merge requests into a cohesive group, with an optional start date and an optional due date.
A milestone is a group of tasks within a project. Milestones help you track a project at various levels and manages the internal dependencies within a set of tasks.
Are milestones and issue tracking part of the git itself and not of Gitlab?
No, they are part of GitLab only, not git.
If that hasn't change from issue 339, you have a "new milestone" button in the Issues
section, tab 'Milestones
':
As the OP Hoffmann reports: the presence of this button depends on your role (or abilities).
As you can see in ability.rb
, only the ability 'master
' allows to create / manage milestones:
def project_master_rules
project_dev_rules + [
:push_code_to_protected_branches,
:modify_issue,
:modify_project_snippet,
:modify_merge_request,
:admin_issue,
:admin_milestone, <=============
:admin_project_snippet,
:admin_team_member,
:admin_merge_request,
:admin_note,
:admin_wiki,
:admin_project
]
end
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With