Michael LeVan
Michael LeVan

Reputation: 556

Can't Clone Git Repository

I am trying to clone the repository at https://github.com/aporter/coursera-android-labs/tree/master/TheActivityClass/Lab2_ActivityLab with the command

git clone https://github.com/aporter/coursera-android-labs/tree/master/TheActivityClass/Lab2_ActivityLab

But it says it can't find the repository. This should be simple and I can clone other repositories. Thanks.

Upvotes: 0

Views: 162

Answers (2)

Ary Wibowo
Ary Wibowo

Reputation: 539

you can clone it with

 git clone https://github.com/aporter/coursera-android-labs/

Upvotes: 1

Daniel Larsson
Daniel Larsson

Reputation: 6394

The path you gave is not a repo, but a sub directory of that repo.

Try this instead:

git clone https://github.com/aporter/coursera-android-labs

Upvotes: 1

Related Questions