1

Is it possible to get List of users / people who cloned project from a particular repository?

Pravy
  • 2,165
  • 5
  • 22
  • 28

2 Answers2

7

Next time google first please:

The only way to do this is to check server logs for users who has accessed the repository, git itself does not record anything like this.

However this will give you list of people who did access directly the server, but this is no way definite list of people who have cloned the repository - they can clone from each other without any limitations, that's how distributed version control works.c

Source: GIT how do I know who or which users cloned the repo?

Community
  • 1
  • 1
Hidden
  • 3,598
  • 4
  • 34
  • 57
0

No, you cannot know this information on git or on github.

ouah
  • 142,963
  • 15
  • 272
  • 331