Generate list of all Merge Requests merged between two tags with all informations in csv file

Hi everyone !

I’m trying to do a csv file with all information about merge requests merged between two tags. I’m trying to get this kind of information for each merge request:

UID; ID; TITLE OF MR; REPOSITORIES; STATUS; MILESTONE; ASSIGNED; CREATION-DATE; MERGED-DATE; LABEL; URL.

For now I have a command that get all merge requests merged between two tags with some information and put it in csv file:

echo "Date; Author Name; Commit Hash; Commit Message; Title" > MRList.csv && git log --merges --first-parent master --pretty=format:"%aD;%an;%H;%s;%b" ifabric-1.2.0-rc-13..ifabric-1.3.0-BETA.1 --shortstat >> MRList.csv

How can I get the other information? I saw in the git log api only options in my command but I can’t find others.

Thank you for your help !