Reputation: 41
We are having a free(5 users) Bitbucket account and recently I gave write access to another user from another team. I have searched Bitbucket documentation but could not find as how to monitor another user activity( as whether he has cloned our repository and when). Can anybody help in this regard?
Upvotes: 4
Views: 12014
Reputation: 111
you can use Audit logs page if you have repo admin it may help
Repository Settings > Audit Log
Upvotes: 0
Reputation: 20041
Just use GIT commands. In BitBucket, in the top menu there is a "Terminal" button. Just click on it to open the terminal and then type any GIT command.
git log --author="JonDoe"
Will prompt the activity of the relevant user.
see How can I view a git log of just one user's commits?
Upvotes: 2