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:
authorkaren Carias <karen@gitlab.com>2015-08-02 19:54:42 +0300
committerkaren Carias <karen@gitlab.com>2015-08-02 19:54:42 +0300
commit4f9d32eab01a51b9de6ff49b74e4599bdcccbc99 (patch)
treea2ed3135187beb2128f3dc146cb69410b099592d /doc/gitlab-basics
parent8e53bae700e356a42f86457295b6b25fc0b03d6d (diff)
typo
Diffstat (limited to 'doc/gitlab-basics')
-rw-r--r--doc/gitlab-basics/add-image.md18
1 files changed, 9 insertions, 9 deletions
diff --git a/doc/gitlab-basics/add-image.md b/doc/gitlab-basics/add-image.md
index 4a43e8c3584..f3ef569f724 100644
--- a/doc/gitlab-basics/add-image.md
+++ b/doc/gitlab-basics/add-image.md
@@ -11,50 +11,50 @@ like to add the image. There, paste the image.
Go to your [shell](command-line-commands.md), and add the following commands:
-- To find the correct file, add this command for every file that you'd like to open until
+To find the correct file, add this command for every file that you'd like to open until
you reach the file where you added your image:
```
cd NAME-OF-FILE-YOU'D-LIKE-TO-OPEN
```
-- Create a new branch:
+Create a new branch:
```
git checkout -b NAME-OF-BRANCH
```
-- Check if your image was correctly added to the file:
+Check if your image was correctly added to the file:
```
ls
```
You should see the name of the image in the list shown.
-- Go back one file:
+Go back one file:
```
cd ../
```
-- Check the status and you should see your image’s name in red:
+Check the status and you should see your image’s name in red:
```
git status
```
-- Add your changes:
+Add your changes:
```
git add NAME-OF-YOUR-IMAGE
```
-- Check the status and you should see your image’s name in green:
+Check the status and you should see your image’s name in green:
```
git status
```
-- Add the commit:
+Add the commit:
```
git commit -m “DESCRIBE COMMIT IN A FEW WORDS”
```
-- Send your changes to GitLab.com:
+Send your changes to GitLab.com:
```
git push origin NAME-OF-BRANCH
```