美文网首页
Unity SVN项目 获取差异文件

Unity SVN项目 获取差异文件

作者: CERI_CHANNEL | 来源:发表于2022-07-07 10:58 被阅读0次

    批处理代码:

    @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

    差异记录在输出文件中以便提取

    相关文章

      网友评论

          本文标题:Unity SVN项目 获取差异文件

          本文链接:https://www.haomeiwen.com/subject/bizmbrtx.html