9

Github Desktop makes it easy for me to clone projects from Github, when they belong to my account (or one of my organizations).

Cloning projects with Github Desktop

Is there any way for me to clone a public repo belonging to somebody else with Github Desktop?

bryanbraun
  • 3,025
  • 2
  • 26
  • 38

3 Answers3

9

I don't believe you can do that from within Github Desktop.

You can use the Clone in Desktop button on a Github project's webpage (as Anatoly said).

enter image description here

Another alternative (without the client of course), is opening a cmd/terminal and using:

git clone https://github.com/user/repo.git
David Ferenczy Rogožan
  • 23,966
  • 9
  • 79
  • 68
Meeoh
  • 463
  • 4
  • 11
  • On the github page for the project I click 'Clone or download' and then 'Open in desktop' and nothing happens. So I copied the url `https://github.com//.git` from 'Clown or download', opened git-bash command line, and did `git clone `, and it worked. – Stephen Hosking May 17 '17 at 02:29
2

You can drag-and-drop the URL from your browser onto GitHub Desktop. Then it will ask you where to save the files.

John H
  • 502
  • 6
  • 9
  • 1
    Where are you dropping the URL in GHDesktop? I've tried this six ways from Sunday and can't get it to work. – Sean Aug 14 '17 at 21:56
0

Seems fork and clone if you use the client. Otherwise use command line tools like @Shameel Abdullah said

Waters
  • 343
  • 1
  • 11