I was asked to log all clicks made to the remote repository during the working day in order to display along our assembly information. I am having trouble getting the necessary information for a remote repository.
I can get information regarding my local version of the repository with "$ git log", and I came up with the command "$ git reflog show origin / master" on the remote control, but the main problem is that it does not show any details.
My remote repository is hosted on BitBucket. I am trying to get a list of files that were clicked and a commit message associated with that click all day long. Is it possible?
source
share