How to export team server / commit history?

0
For our ISAE/ISO certification we need an export of all commits for a specific app. Is there a simple way to create an excel of all commits made ever or a specific date window?
asked
2 answers
1

Never done it before, but maybe you can do something with an export from tortoise SVN: 

https://stackoverflow.com/questions/8931392/how-to-download-tortoise-svn-show-log-info-into-a-file

https://tortoisesvn.net/docs/release/TortoiseSVN_en/tsvn-dug-showlog.html

answered
0

Sander

Seems like you could build something pretty quickly with the Mendix Team Server API  

This API has 3 calls:  

  • Retrieve Branches – get all the branches for an app
  • Retrieve Branch – get a specific branch (or main)
  • Retrieve Revisions – for a branch, I think this is what you’re after

Hope that helps,

Mike

answered