I am doing some data mining research and I need to be able to pull from a git repository all filenames with their associated change log and pipe them to a text file.
I am interested in parsing through the change log of each respective file and finding the bugzilla bug ID associated with it.
So far the command:
git log --stat > gitoutputlog1.txt
gets me close to what I want but there is a lot of information there that I don't want and could potentially confuse my parser.
Anybody have any ideas for a bash script or command that can do what I want specifically and cleanly?