0

我想获取 svn 第一个修订版到最后一个版本中所有更改文件的列表,我想在 excel 表中获取所有更改文件?

4

2 回答 2

1

使用您最喜欢的 svn 客户端创建一个 CSV 文件并在 Excel 中打开它。Excel 读取 CSV,因此您实际上不需要了解内部 excel 格式。

于 2012-07-16T09:42:58.117 回答
0

您可以运行 svn diff 并输出到 xml 文件。然后对它运行这个基本的 xsl 文件。

把它放在一个 .bat 文件中

set __SVNClient="C:\Program Files\CollabNet\Subversion Client\svn.exe"
set __svnBaseSVNSourceLocation=https://mySVNServer.com/MyRepository

%__SVNClient% diff --revision 333:HEAD "%__svnBaseSVNSourceLocation%"  --summarize --username %USERNAME% --xml >>svndiffexample.xml

set __svnBaseSVNSourceLocation=
set __SVNClient=

然后将这个 xsl 应用到上面的 xml 中。

<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:msxsl="urn:schemas-microsoft-com:xslt" exclude-result-prefixes="msxsl">
    <xsl:output method="text" indent="yes"/>
    <xsl:template match="/">item,props,kind,path<xsl:text>&#10;</xsl:text>
        <xsl:for-each select="//diff/paths/path">
<xsl:value-of select="@item"/>,<xsl:value-of select="@props"/>,<xsl:value-of select="@kind"/>,<xsl:value-of select="."/>
            <xsl:text>&#10;</xsl:text>
        </xsl:for-each>
    </xsl:template>
</xsl:stylesheet>

你会得到这样的输出

item,props,kind,path
modified,none,file,https://mySVNServer.com/MyRepository/MyFile01.txt
modified,none,file,https://mySVNServer.com/MyRepository/ABCFolder/INC/MyFile01.inc
modified,none,file,https://mySVNServer.com/MyRepository/ABCFolder/Js/MyFile01.js
modified,none,file,https://mySVNServer.com/MyRepository/DEFFolder/MyFile01.pdf
于 2013-02-28T15:17:41.273 回答