I'm trying to turn this standard git log --stat output:
commit 8a3f15205922e524d59524fe89c4304849dd6c8c
Author: FooManChu <fooMC@email.com>
Date: Fri Jul 15 20:33:17 2016 -0400
Some Commit Message Body
foodir/foofile1.foo | 8 +
foodir/foofile2.foo | 47 +
foodir/foofile3.foo | 7049 +++++++++++++++++++++++
foodir/foofile4.foo | 3563 ++++++++++++
foodir/foofile5.foo | 24 +
foodir/foofile6.foo | 0
foodir/foofile7.foo | 41 +
7 files changed, 10732 insertions(+)
commit c8bd4ca8d683c20f3cf206fdeb8dbec2f185536e
Author: FooGirlChu <fooGC@email.com>
Date: Fri Jul 15 00:11:24 2016 -0400
Initial commit
FOO | 674 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
README.md | 1 +
2 files changed, 675 insertions(+)
Into the xml file structure seen below. It doesn't have to be mapped directly like below, but still close enough to be customized if needed.
<?xml version="1.0" encoding="utf-8"?>
<stats>
<commit sha1='8a3f15205922e524d59524fe89c4304849dd6c8c'>
<author email='fooMC@email.com'>FooManChu</author>
<date>Fri Jul 15 20:33:17 2016 -0400</date>
<body>Some Commit Message Body</body>
<diff-stat>
<filepathname insertions='8'>foodir/foofile1.foo</filepathname>
<filepathname insertions='47'>foodir/foofile2.foo</filepathname>
<filepathname insertions='7049'>foodir/foofile3.foo</filepathname>
<filepathname insertions='3563'>foodir/foofile4.foo</filepathname>
<filepathname insertions='24'>foodir/foofile5.foo</filepathname>
<filepathname insertions='0'>foodir/foofile6.foo</filepathname>
<filepathname insertions='41'>foodir/foofile7.foo</filepathname>
</diff-stat>
<summary changed='7' insertions='10732'/>
</commit>
<commit sha1='c8bd4ca8d683c20f3cf206fdeb8dbec2f185536e'>
<author email='fooGC@email.com'>FooGirlChu</author>
<date>Fri Jul 15 00:11:24 2016 -0400</date>
<body>Initial commit</body>
<diff-stat>
<filepathname insertions='674'>FOO</filepathname>
<filepathname insertions='1'>README.md</filepathname>
</diff-stat>
<summary changed='2' insertions='675'/>
</commit>
</stats>
I've looked at Parsing Git Log Output and Understand Git Log Stat Output, but I've been unable to duplicate the --stat format.
My question is therefore can this be done in git? or should I be trying to code a parsing program instead that takes --stat as input and outputs my xml file?