Cloning a repository from GitHub

Other topics

Clone a repository

  1. Go to the repository you want to clone (something like: https://github.com/username/repo)

Gif showing example of going onto the repository you want to clone.

  1. On the right, click on the green button named clone or download

Gif showing example of clicking the green button named "Clone or Download"

  1. A small window will appear, copy the url (something like: https://github.com/username/repo.git)

Gif showing example of copying link to clipboard

  1. Open a terminal window on the machine you want to clone that project to

  2. Navigate from the command line to the location you want to clone the project to

  3. Enter the command: git clone <copied_url_from_step_3>

  4. Press Enter

  5. Something like the following will appear:

    Cloning into <repo_name>...

    remote: Counting objects: 10, done.

    remote: Compressing objects: 100% (8/8), done.

    remove: Total 10 (delta 1), reused 10 (delta 1)

    Unpacking objects: 100% (10/10), done.

Syntax:

  • git clone github.com/username/repository

Contributors

Topic Id: 3761

Example Ids: 23708

This site is not affiliated with any of the contributors.