I have read parsing git log output, preferably as xml but that does not help. I am trying to get the following information about a Git tag.
- User that created the tag
- Message associated with tag creation if any
- The name of the tag (I know this as I already pass this) but I want them in the output so that I can just pass the whole output back to my caller
- The latest commit id on that tag
I would prefer them as CSV or space/tab separated values so I was trying to use the --format option. I was trying things like
git show my_label_name --pretty=format:"%an, %cn" --quiet
but this does not produce what I want. What can I try next?