How to clone a git repository ?

How to clone a git repository ?

ยท

1 min read

Cloning a Repository

  • On github, navigate to the main page of the repository and copy the URL of the respository which you want to clone.

image.png

  • Open Git Bash.

  • Change the current working directory to the location where you want the clone git remote repository.

image.png

  • Type the below following command
git clone https://github.com/YOUR-USERNAME/YOUR-REPOSITORY

image.png

ย