Remove $ When copied into shell it will error out.

This commit is contained in:
Alex Flinn 2021-10-20 10:11:30 +00:00
parent 8e1fbdf4db
commit dcb5aa615c

View file

@ -16,7 +16,7 @@ disqus_identifier: 'https://docs.gitlab.com/ee/workflow/workflow.html'
1. Create branch with your feature:
```shell
git checkout -b $feature_name
git checkout -b feature_name
```
1. Write code. Commit changes:
@ -28,7 +28,7 @@ disqus_identifier: 'https://docs.gitlab.com/ee/workflow/workflow.html'
1. Push your branch to GitLab:
```shell
git push origin $feature_name
git push origin feature_name
```
1. Review your code on commits page.