如何使用命令行在SVN日志中选择所有修订历史记录?

时间:2016-12-29 11:06:13

标签: c# svn tortoisesvn

我可以使用命令行获取SVN的修订(日志)详细信息。我必须在文件中单独编写修订号,为此,使用"/outfile:Sameple.txt"命令。此命令适用于ShowLog对话框中的选定修订。因此,所有细节都不会保存在Sample.txt文件中。

Process proc = new Process(); proc.StartInfo.FileName = @"C:\Program Files\TortoiseSVN\bin\TortoiseProc.exe"; proc.StartInfo.UseShellExecute = true; proc.StartInfo.Arguments = "/command:log /path:" + updateLocation + " /startrev:{2016-12-19} /endrev:{2016-11-11} /outfile:E:\\Sample.txt";

请建议我,如何将所有修订号写入文件?

(或)

如何使用命令行选择所有修订详细信息?

enter image description here

先谢谢

0 个答案:

没有答案