Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/README.md2
-rw-r--r--doc/workflow/workflow.md7
2 files changed, 5 insertions, 4 deletions
diff --git a/doc/README.md b/doc/README.md
index 99a0d678cdf..d85a2d854d3 100644
--- a/doc/README.md
+++ b/doc/README.md
@@ -3,7 +3,7 @@
+ [API](api/README.md)
+ [Development](development/README.md)
+ [Install](install/README.md)
-+ [Integration](external-issue-tracker/README.md)
++ [Integration](integration/external-issue-tracker.md)
+ [Legal](legal/README.md)
+ [Markdown](markdown/markdown.md)
+ [Permissions](permissions/permissions.md)
diff --git a/doc/workflow/workflow.md b/doc/workflow/workflow.md
index 1c238f74957..bb232e9d5c5 100644
--- a/doc/workflow/workflow.md
+++ b/doc/workflow/workflow.md
@@ -3,24 +3,25 @@
```bash
git clone git@example.com:project-name.git
```
+
2. Create branch with your feature
```bash
git checkout -b $feature_name
```
-3. Write code. Comit changes
+3. Write code. Commit changes
```bash
git commit -am "My feature is ready"
```
4. Push your branch to GitLab
-
+
```bash
git push origin $feature_name
```
-5. Review your code on Commits page
+5. Review your code on commits page
6. Create a merge request
7. Your team lead will review the code & merge it to the main branch