SVN log --xml version omits line count
sebb <[email protected]>
| Newsgroups | gmane.comp.version-control.subversion.user |
|---|---|
| Message-ID | <CAOGo0VYgrbqKY31G8-SZDvOqwL7tGUoHqFbR7d1H_qo3jUv6ng@mail.gmail.com> |
I would expect svn log --xml to include all the same info as the
non-xml version, but that is not the case. The number of lines changed
is not visible in the xml version.
Is that intentional?
If so, why?
Sebb
Sample outputs below
-----------------------------
$ svn log https://svn.apache.org/repos/asf/subversion/trunk/NOTICE -r1914220
------------------------------------------------------------------------
r1914220 | hartmannathan | 2023-11-30 04:47:33 +0000 (Thu, 30 Nov
2023) | 6 lines
Update copyright year to 2023.
* NOTICE,
* subversion/libsvn_subr/version.c (svn_version_extended):
Bump copyright year to 2023.
------------------------------------------------------------------------
$ svn log https://svn.apache.org/repos/asf/subversion/trunk/NOTICE
-r1914220 --xml
<?xml version="1.0" encoding="UTF-8"?>
<log>
<logentry
revision="1914220">
<author>hartmannathan</author>
<date>2023-11-30T04:47:33.883414Z</date>
<msg>Update copyright year to 2023.
* NOTICE,
* subversion/libsvn_subr/version.c (svn_version_extended):
Bump copyright year to 2023.
</msg>
</logentry>
</log>