github

Cloning a repository from GitHub

Syntax#

  • git clone github.com/username/repository

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.


This modified text is an extract of the original Stack Overflow Documentation created by the contributors and released under CC BY-SA 3.0 This website is not affiliated with Stack Overflow