Can the owner of a repo see clones?

goodcow picture goodcow · Jan 5, 2014 · Viewed 70.3k times · Source

I know that the owner of a repo is able to see a fork request when one is performed. But what about a clone? Can the owner of the repo see when someone clones it?

Answer

Lasse V. Karlsen picture Lasse V. Karlsen · Jan 5, 2014

The question is too general, but let me answer the question as it stands now.

Can the owner of the repo see when someone clones it?

No, they cannot. If I go to one of your repositories and clone it to my local hard drive, you can't see that. And why would you want to? Likely there are many clones of your repository.

Know that clones can live on other systems than github.

Now, will the owner know that someone forked their repository on github itself?

Yes, they will, assuming they pay attention.

I did the following:

  1. Logged in as my main account
  2. Created a repository
  3. Set up a new dummy-account on an alternate email address
  4. Forked the repository I created earlier
  5. Logged back into my main account

This is what I see on my first page after logging in:

fork notification

If I do the following:

  1. Click on my repository
  2. Click on the small 1 to the right of the "Fork" button:

    fork button after forking

  3. Click on the "Members" tab:

    members tab

  4. Then I see this:

    content of members tab

Conclusion:

Yes, the owner of a repository will see when someone makes a fork on Github, but no, they will not see it when someone makes a clone somewhere else.