Commit 2496f85d464c599d83bd95bde11b1cb6895693bd
1 parent
dfc92cd2
Exists in
spb-stable
and in
3 other branches
Fix rendering for enumeration for doc page
Showing
1 changed file
with
4 additions
and
3 deletions
Show diff stats
doc/workflow/workflow.md
... | ... | @@ -3,24 +3,25 @@ |
3 | 3 | ```bash |
4 | 4 | git clone git@example.com:project-name.git |
5 | 5 | ``` |
6 | + | |
6 | 7 | 2. Create branch with your feature |
7 | 8 | |
8 | 9 | ```bash |
9 | 10 | git checkout -b $feature_name |
10 | 11 | ``` |
11 | 12 | |
12 | -3. Write code. Comit changes | |
13 | +3. Write code. Commit changes | |
13 | 14 | |
14 | 15 | ```bash |
15 | 16 | git commit -am "My feature is ready" |
16 | 17 | ``` |
17 | 18 | |
18 | 19 | 4. Push your branch to GitLab |
19 | - | |
20 | + | |
20 | 21 | ```bash |
21 | 22 | git push origin $feature_name |
22 | 23 | ``` |
23 | 24 | |
24 | -5. Review your code on Commits page | |
25 | +5. Review your code on commits page | |
25 | 26 | 6. Create a merge request |
26 | 27 | 7. Your team lead will review the code & merge it to the main branch | ... | ... |