I'm working with Git repository, and I need to get "blame" data for a file (ex. log-tree.c). So, I'm using the following command
git --git-dir=/home/gh/git/.git --work-tree=/home/gh/git blame log-tree.c
However, it just shows the data for the last revesion of the file, but I need to get the "blame" information of each revesion of that file. So, how can I do that ?