通过代码,我将文件导入到 SVN 存储库,例如:
SVNCommitClient client = new SVNCommitClient(authManager,null);
client.doImport(file,SVNURL.parseURIEncoded(<SVN Path>),
"Am ready to commit", new SVNProperties(), false, false, SVNDepth.INFINITY);
第一次添加文件时,它会自动添加和提交,但是如果我在 destLocation(即,SVN 存储库位置)已经存在文件时运行相同的代码,则会发生以下错误:
ERROR : Failed to Download File.SVNException
org.tmatesoft.svn.core.SVNException: svn: E160020: File already exists: ....
请帮助我通过 JAVA 代码覆盖 SVN 中已经存在的文件。
谢谢,
拉吉里塔