批处理代码:
@echo off
@echo %1 %2 %3
@set svn="%cd%/Svn/Windows/bin/svn.exe"
@set current="%cd%"
@set client="%cd%/../../../../../"
@cd %client%
@%svn% diff -r %1:%2 --summarize > %3
@cd %current%
参数:
开始svn版本 | 结束svn版本 | 文件地址 |
---|---|---|
string | string | string |
startVersion | endVersion | filePath |
差异记录在输出文件中以便提取
网友评论