我已经在SVN中提交了2个文件。我可以使用预提交钩子获取提交文件的差异。请找到以下关于获得差异的评论
string commandLineArguments = string.Format("diff --transaction {0} \"{1}\"", transactionName, repositoryPath);
string output = GetSvnlookOutput(commandLineArguments);
我只需要一个文件差异。请找下面的例子。 EX: 已提交 sample1.cs 和 sample2.cs 。但我只需要 sample1.cs svn dfference。 有没有可能根据文件名获得单个文件的差异?。