summaryrefslogtreecommitdiff
path: root/doc/workflow/project_features.md
diff options
context:
space:
mode:
authorJob van der Voort <jobvandervoort@gmail.com>2014-04-02 14:45:59 +0200
committerJob van der Voort <jobvandervoort@gmail.com>2014-04-02 14:45:59 +0200
commitc66c84a40d79be3d8d361753c13245093cf7e672 (patch)
tree0ae23a8eb41ad95b9fc35a863be3181ae7fe7d0a /doc/workflow/project_features.md
parent973f9d30d9c81a1a06670c257998f3bb8dfe43be (diff)
downloadgitlab-ce-c66c84a40d79be3d8d361753c13245093cf7e672.tar.gz
add project features to doc/workflow
Diffstat (limited to 'doc/workflow/project_features.md')
-rw-r--r--doc/workflow/project_features.md22
1 files changed, 22 insertions, 0 deletions
diff --git a/doc/workflow/project_features.md b/doc/workflow/project_features.md
new file mode 100644
index 00000000000..6a5ba2639c4
--- /dev/null
+++ b/doc/workflow/project_features.md
@@ -0,0 +1,22 @@
+## Issues
+
+Issues is a really powerful, but lightweight issue tracking system. You can make tickets, assign them to people, file them under milestones, order them with labels and have discussion in them. They integrate deeply into GitLab and are easily referenced from anywhere by using # and the issuenumber. Internally, at GitLab.com, we use this for all our project management needs.
+
+## Merge Requests
+
+Using a merge request, you can review and discuss code before it is merged in the branch of your code. As with issues, it can be assigned; people, issues, etc can be refereced; milestones attached. We see it as an integral part of working together on code and couldn't work without it.
+
+
+## Wiki
+
+This is a separate system for documentation, built right into GitLab. 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.
+
+
+## Wall
+
+For simple, project specific conversations, the wall can be used. It's very lightweight and simple and works well if you're not interested in using issues, but still want to occasionally communicate within a project.
+
+
+## Snippets
+
+Snippets are little bits of code or text. 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. For example, a specific config file that is used by > the team that is only valid for the people that work on the code.