Track git pushes and checkout
问题 Currently, I distribute files to my customers through git, and would like to observe situation - who from my customers updated required files, who`s not, so is there any way to track that specific customer a) git pulled from git server b) git checkout successfully ? Thanks in advance. 回答1: git push performed by a customer adds commits from that customer to your repo -- you should be able to see if there are new commits which originate from your customers by using git log or similar. You can