Git clone

What is the git clone?

 It means download your repository files or folders in Github

How to clone files or folders?

  1. Open your Github account.
  2. Click the < > Code button.
  3. Copy the SSH key link
  4. Open the terminal
  5. Change the current working directory to the location where you want the cloned directory.
  6. Type git clone  and the past URL you copied
    git clone https://github.com/YOUR-USERNAME/YOUR-REPOSITORY
Press Enter to create your local clone.

Comments