I don't seem to be able to find the answer for what I believe should be simple task.
Consider the following - I have git archive command to pull content from git repository, and I wanted to be able to display commit message associated with it, but I'm not sure why this is not possible?
I know I could in theory do git clone and then do git status, but at the moment this is my last resort and I'd like to know if I can achieve this with git archive only. I can add --verbose switch and it lists all the files to be archived, which is ok, but what I wanted really is to display the commit message.
Are there any tips apart from reading through git help archive? Also, if it's not possible currently, would such feature be useful to people or do I just want too much? :)