diff options
author | Ciro Santilli <ciro.santilli@gmail.com> | 2014-04-25 00:48:22 +0200 |
---|---|---|
committer | Ciro Santilli <ciro.santilli@gmail.com> | 2014-06-03 23:16:31 +0200 |
commit | fd348de76d651d49acc8eb742cc647dc777ef5fc (patch) | |
tree | 26f42bef57c9a636eff0a548a29cb1e2e6d12c8c /doc/workflow/workflow.md | |
parent | de1a7aa7eb523cf2fdad12f8eeda2ba4c5b51820 (diff) | |
download | gitlab-ce-fd348de76d651d49acc8eb742cc647dc777ef5fc.tar.gz |
Update docs to markdown style guide.
Diffstat (limited to 'doc/workflow/workflow.md')
-rw-r--r-- | doc/workflow/workflow.md | 40 |
1 files changed, 21 insertions, 19 deletions
diff --git a/doc/workflow/workflow.md b/doc/workflow/workflow.md index 8186cd53b20..ab29cfb670b 100644 --- a/doc/workflow/workflow.md +++ b/doc/workflow/workflow.md @@ -1,29 +1,31 @@ # Workflow -1. Clone project +1. Clone project: - ```bash - git clone git@example.com:project-name.git - ``` + ```bash + git clone git@example.com:project-name.git + ``` -2. Create branch with your feature +1. Create branch with your feature: - ```bash - git checkout -b $feature_name - ``` + ```bash + git checkout -b $feature_name + ``` -3. Write code. Commit changes +1. Write code. Commit changes: - ```bash - git commit -am "My feature is ready" - ``` + ```bash + git commit -am "My feature is ready" + ``` -4. Push your branch to GitLab +1. Push your branch to GitLab: - ```bash - git push origin $feature_name - ``` + ```bash + git push origin $feature_name + ``` -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 +1. Review your code on commits page. + +1. Create a merge request. + +1. Your team lead will review the code & merge it to the main branch. |