Is it possible to get List of users / people who cloned project from a particular repository?
Asked
Active
Viewed 653 times
1
-
Do you mean github specifically? – 1615903 Jun 14 '13 at 09:42
-
2On own git server You could collect statistics with external tools. – Fedir RYKHTIK Jun 14 '13 at 09:49
-
This question suggests that you have a workflow that's broken. Can you state why you need this information and how you're using it? – Noufal Ibrahim Jun 14 '13 at 10:28
2 Answers
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?