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:
Diffstat (limited to 'doc/gitlab-basics/feature_branch_workflow.md')
-rw-r--r--doc/gitlab-basics/feature_branch_workflow.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/gitlab-basics/feature_branch_workflow.md b/doc/gitlab-basics/feature_branch_workflow.md
index 2b641126d0d..dd7eed89ea1 100644
--- a/doc/gitlab-basics/feature_branch_workflow.md
+++ b/doc/gitlab-basics/feature_branch_workflow.md
@@ -6,25 +6,25 @@ disqus_identifier: 'https://docs.gitlab.com/ee/workflow/workflow.html'
1. Clone project:
- ```bash
+ ```shell
git clone git@example.com:project-name.git
```
1. Create branch with your feature:
- ```bash
+ ```shell
git checkout -b $feature_name
```
1. Write code. Commit changes:
- ```bash
+ ```shell
git commit -am "My feature is ready"
```
1. Push your branch to GitLab:
- ```bash
+ ```shell
git push origin $feature_name
```