我使用巡航控制來自動執行svn提交過程。但執行svn commit命令會恢復從我的工作副本中刪除的文件。SVN提交使用巡航控制
我這樣做的方式是。
1. delete some files in my working copy.(no. of files in my WC is less than no. of files in repository)
2. execute svn command using cruise control.
<exec executable="svn.exe">
<buildArgs>ci -m "test msg" --no-auth-cache --non-interactive</buildArgs>
<buildTimeoutSeconds>1000</buildTimeoutSeconds>
</exec>
result: the deleted files are restored in my WC...
有人可以幫我搞清楚我已經錯了......或者,如果我必須做一些變化/配置...
感謝ü所有。
關於。 uday
可以告訴我如何使用命令行來完成這個工作 – pratap
@pratap看我的編輯。隨時也可以谷歌「svn刪除」獲得更多幫助。 –
謝謝這給了我刪除n然後提交的想法.... 再次感謝 – pratap