diff --git a/source/en/extend-git.txt b/source/en/extend-git.txt
index 44f9d4a..f391143 100644
--- a/source/en/extend-git.txt
+++ b/source/en/extend-git.txt
@@ -18,7 +18,11 @@ on your site.
 * <<install-dev-sites>>
 
 * How to set up a Git repository and find its _clone_ URL. For example, if
-you want to use GitHub to host your repository, see
+you want to use GitLab to host your repository, see
+https://docs.gitlab.com/ee/user/project/repository/index.html[GitLab "Repository" page]
+and
+https://docs.gitlab.com/ee/gitlab-basics/command-line-commands.html[GitLab "Command Line basic commands" page].
+And if you want to use GitHub to host your repository, see
 https://help.github.com/en/articles/create-a-repo[GitHub "Create a repo" page]
 and
 https://help.github.com/en/articles/which-remote-url-should-i-use[GitHub "Which remote URL should I use" page].
@@ -92,12 +96,12 @@ clone URL for the URL in the second command:
 +
 ----
 git commit -m "Initial file add"
-git remote add origin https://github.com/example-name/example-repo.git
+git remote add origin https://gitlab.com/example-name/example-repo.git
 git push -u origin master
 ----
 
-. If you are using GitHub repository hosting, or another host with online
-access, you can now go to your repository page and see that the files are there.
+. If you are using GitLab, GitHub, or another host with online access, you can
+now go to your repository page and see that the files are there.
 
 ===== Updating files in the repository
 
@@ -166,7 +170,7 @@ copies of the site.
 URL, and the name of the subdirectory you want them in for _dirname_:
 +
 ----
-git clone https://github.com/example-name/example-repo.git dirname
+git clone https://gitlab.com/example-name/example-repo.git dirname
 ----
 
 ===== Managing configuration in the repository
diff --git a/source/en/install-tools.txt b/source/en/install-tools.txt
index 59a9268..9ec15d6 100644
--- a/source/en/install-tools.txt
+++ b/source/en/install-tools.txt
@@ -88,7 +88,9 @@ which allows you to commit changes to a copy and then only _push_ them to the
 repository you've designated as _canonical_ when you're ready to share them with
 others. The canonical git repository can be hosted on your local computer or a
 server at your company, but many software projects and individuals host their
-Git repositories on the https://github.com/[GitHub] site.
+Git repositories using third-party services provided by
+https://about.gitlab.com/[GitLab] or https://github.com/[GitHub].
+
 
 ==== What is Composer used for?
 
