diff options
Diffstat (limited to 'doc/gitlab-basics/start-using-git.md')
-rw-r--r-- | doc/gitlab-basics/start-using-git.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/gitlab-basics/start-using-git.md b/doc/gitlab-basics/start-using-git.md index 385f69e62ab..8d4320f7d44 100644 --- a/doc/gitlab-basics/start-using-git.md +++ b/doc/gitlab-basics/start-using-git.md @@ -110,8 +110,8 @@ and paste in your command line. As an example, consider this repository path: -- HTTPS: `https://gitlab.com/gitlab-org/gitlab-foss.git` -- SSH: `git@gitlab.com:gitlab-org/gitlab-ce.git` +- HTTPS: `https://gitlab.com/gitlab-org/gitlab.git` +- SSH: `git@gitlab.com:gitlab-org/gitlab.git` To get started, open a terminal window in the directory you wish to clone the repository files into, and run one of the following commands. @@ -119,13 +119,13 @@ files into, and run one of the following commands. Clone via HTTPS: ```bash -git clone https://gitlab.com/gitlab-org/gitlab-foss.git +git clone https://gitlab.com/gitlab-org/gitlab.git ``` Clone via SSH: ```bash -git clone git@gitlab.com:gitlab-org/gitlab-ce.git +git clone git@gitlab.com:gitlab-org/gitlab.git ``` Both commands will download a copy of the files in a folder named after the project's |