gitlab-org--gitlab-foss/doc/workflow/project_features.md

36 lines
1.3 KiB
Markdown
Raw Normal View History

2014-05-27 12:12:15 +00:00
# Project features
When in a Project -> Settings, you will find Features on the bottom of the page that you can toggle.
2014-04-24 22:48:22 +00:00
Below you will find a more elaborate explanation of each of these.
2014-04-02 12:45:59 +00:00
## Issues
Issues is a really powerful, but lightweight issue tracking system.
2014-04-24 22:48:22 +00:00
You can make tickets, assign them to people, file them under milestones, order them with labels and have discussion in them.
2014-05-23 13:01:02 +00:00
2014-04-24 22:48:22 +00:00
They integrate deeply into GitLab and are easily referenced from anywhere by using `#` and the issue number.
2014-04-02 12:45:59 +00:00
## Merge Requests
Using a merge request, you can review and discuss code before it is merged in the branch of your code.
2014-04-24 22:48:22 +00:00
As with issues, it can be assigned; people, issues, etc. can be refereced; milestones attached.
2014-04-02 12:45:59 +00:00
2014-04-24 22:48:22 +00:00
We see it as an integral part of working together on code and couldn't work without it.
2014-04-02 12:45:59 +00:00
## Wiki
This is a separate system for documentation, built right into GitLab.
2014-04-02 12:45:59 +00:00
2014-04-24 22:48:22 +00:00
It is source controlled and is very convenient if you don't want to keep you documentation in your source code, but you do want to keep it in your GitLab project.
2014-04-02 12:45:59 +00:00
## Snippets
Snippets are little bits of code or text.
2014-04-24 22:48:22 +00:00
This is a nice place to put code or text that is used semi-regularly within the project, but does not belong in source control.
2014-04-24 22:48:22 +00:00
For example, a specific config file that is used by > the team that is only valid for the people that work on the code.