How can I find out who has cloned / pulled a project in git? I’m finding all great tools for tracking the files, but is there a way to see who has had accessed them?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Assuming people are accessing the repository via ssh, you could use
sshd‘s access log to get a general sense.Beyond that, however, there aren’t any “access logs” built into Git itself. If you use something like
gitoliteto serve repositories, it has its own logging functionality I believe.