summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorkaren Carias <karen@gitlab.com>2015-06-25 16:44:31 -0700
committerkaren Carias <karen@gitlab.com>2015-06-25 16:44:31 -0700
commite8e6bb09a297692370396797bfafb7111a993848 (patch)
tree409db3c0c32ae3d371b286924ce35d6bcecc8f1e /doc
parent047c074a153684091c562bda74670eaee5892758 (diff)
downloadgitlab-ce-e8e6bb09a297692370396797bfafb7111a993848.tar.gz
fixed clone words
Diffstat (limited to 'doc')
-rw-r--r--doc/gitlab_basics/command_line_commands.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/gitlab_basics/command_line_commands.md b/doc/gitlab_basics/command_line_commands.md
index ee7ab7d1376..d780f2c47e8 100644
--- a/doc/gitlab_basics/command_line_commands.md
+++ b/doc/gitlab_basics/command_line_commands.md
@@ -2,9 +2,9 @@
## Start working on your project
-* You need to add a copy in your computer of all the contents in the project that you’d like to work on. To do it, go to your account in [gitlab.com](https://gitlab.com)
+* In Git, when you copy a project you say you "clone" it. You need to clone the contents in the project that you’d like to work on to your computer. To do it, go to your [gitlab.com](https://gitlab.com) account
-* When you are on your Dashboard, click on the project that you'd like to copy, which you'll find at the right side of your screen
+* When you are on your Dashboard, click on the project that you'd like to clone, which you'll find at the right side of your screen
![Select a project](basicsimages/select_project.png)
@@ -14,13 +14,13 @@
## In your Command Line or shell
-* To add a copy of the project's contents into your computer, go to your computer's shell and type the following command
+* To clone your project, go to your computer's shell and type the following command
```
git clone PASTE HTTPS HERE
```
-* A copy of the project will be created in your computer. You'll be able to find it stored as a regular file
+* A clone of the project will be created in your computer. You'll be able to find it stored as a regular file
## Basic commands