Skip to content

Latest commit

 

History

History
27 lines (15 loc) · 722 Bytes

git-clone-repo.md

File metadata and controls

27 lines (15 loc) · 722 Bytes

Clone a repository

git clone {{REPOSITORY}} {{DIRECTORY}}

  • REPOSITORY: Specifies URL of remote repository using a protocol like HTTPS or SSH
  • DIRECTORY: Name of folder on local machine where repository is downloaded into

Example:

git clone https://github.com/arshadkazmi42/ak-cli.git

This will download the project to a folder named after the Git repository(ak-cli in this case)

OR

git clone https://github.com/arshadkazmi42/ak-cli.git OpenSource

This will download the project to a folder named OpenSource

Demo

Git Clone

Related