svn diff的意外输出汇总

时间:2014-10-24 15:40:24

标签: svn

我正在检查分支的一些更改并添加一些文件。我使用svn diff命令将它与trunk中的代码进行比较并列出更改。我得到的更改列表显示我已经在主干内修改了一些文件,而在分支中修改了相同的文件而不是主干。

中继的URL(被视为旧URL): http://sourcecode.com/test/trunk/TEST/deployer

分支的网址(被视为新网址):http://sourcecode.com/test/branches/TEST_PROJ_DEV/deployer

所以当我使用命令svn diff和--summarize标志时,如下所示:

svn diff --summarize http://sourcecode.com/test/trunk/TEST/deployer http://sourcecode.com/test/branches/TEST_PROJ_DEV/deployer

预期产出:

A      http: //sourcecode.com/test/branches/TEST_PROJ_DEV/deployer/deployer/start_app.sh
M      http: //sourcecode.com/test/branches/TEST_PROJ_DEV/deployer/stop_app.sh

实际输出:

A      http: //sourcecode.com/test/trunk/TEST/deployer/deployer/start_app.sh
M      http: //sourcecode.com/test/trunk/TEST/deployer/stop_app.sh

如何按预期获得输出?

0 个答案:

没有答案