How to clone project from the GitHub in Android studio

27,717

Solution 1

You can use this image :

File - > new -> Project from Version control -> GitHub

enter image description here

Solution 2

For cloning project from the terminal.

Step 1: Click this button:

Clone or download button

Step 2: Copy the link.

Step 3: Open the terminal, make sure you are in the folder where you want to clone the project. If you are not then just type: cd theDesiredFolderLocation. Next command: git clone copiedLinkPath.

Solution 3

First go to the GitHub and to the repository you want to clone. Click on the Code and copy the repository path

Next open your Android Studio. Make sure you have downloaded and installed git in your computer as well as set the git pathFile->Settings->Git->Test

Next Clone the project File->New->Project From Version Control->Past the URL->Clone

Share:
27,717
IoT Information
Author by

IoT Information

Updated on December 17, 2020

Comments

  • IoT Information
    IoT Information over 3 years

    Hello all I am trying to clone the project from github. Is downloading the zip folder and loading it into the android studio the same as cloning from Github ?