Header

Cloning an existing repository

How to clone a remote repository using Git.

What does cloning mean?

Cloning is essentially the process of downloading an existing repository hosted on a remote server to your own computer.

In this tutorial, I’m going to show you how to clone a remote repository hosted on GitHub, however the process is very similar between Git hosting providers.

Note: If you want to see how to push your repository for the first time, check out the previous tutorial to learn how to publish a Git repository.

Getting the remote repository URL

Finding the remote URL for your repository is fairly straight forward on GitHub. All you need to do is head on over to the overview page for your project.

GitHub Project Overview

Next, click on "Clone or download" to open a small popup window.

GitHub Clone Dialog

As we explained in the previous tutorial, there are two protocols you can use when working with Git; HTTPS and SSH.

Toggle to your preferred protocol by clicking the "Use SSH" or "Use HTTPS" links, then click the small button next to the URL to copy it to your clipboard.

Cloning the repository

Once you've got the repository URL, open up the command line and navigate to the directory where you want the code to live. I have a folder called Projects located inside my home directory where I keep all the code I work on.

When you're ready to clone type the following command, making sure to replace the URL with the one you just copied from GitHub:

git clone git@github.com:robertlyall/shop.git

If successful, the output will look a little something like this:

Cloning into 'shop'...
remote: Enumerating objects: 27, done.
remote: Counting objects: 100% (27/27), done.
remote: Compressing objects: 100% (23/23), done.
remote: Total 27 (delta 2), reused 27 (delta 2), pack-reused 0
Receiving objects: 100% (27/27), 44.39 KiB | 478.00 KiB/s, done.
Resolving deltas: 100% (2/2), done.

By default, Git will create a folder with the same name as the repository, however you can change this by providing an extra argument to the git clone command.

For example, if you'd rather clone the project into a folder named shop-website, you would enter the following command:

git clone git@github.com:robertlyall/shop.git shop-website

Want to learn more about Git?

This tutorial is part of a free beginner-friendly course!

Learn More

Proudly powered by Katapult. Running on 100% renewable energy.