Reputation: 320
I need a report of all pull and push by all team members.
Upvotes: 2
Views: 484
Reputation: 1327384
You could use GitHub webhook or Bitbucket webhook to listen (and trace) push events.
But:
A better setup would be for the team to push to a "git repo proxy" (an intermediate repo that you control), in which:
You can then extract the report from the gitolite logs from the server hosting those intermediate "git repos proxy" (proxy to GitHub, or proxy to Bitbucket).
Upvotes: 2