我想向 SVN 添加一个文件。我是从下面的java代码做的
ourClientManager.getWCClient().doAdd(file, false, false, true , true);
使用SVNWCClient
.
该文件已经存在于 svn 中,所以我得到一个错误“已经在版本控制之下”。
是否有任何可用的方法可以说明该文件已经存在于 svn 中...类似于 isAlreadyUnderVersionControl(file)。
我想向 SVN 添加一个文件。我是从下面的java代码做的
ourClientManager.getWCClient().doAdd(file, false, false, true , true);
使用SVNWCClient
.
该文件已经存在于 svn 中,所以我得到一个错误“已经在版本控制之下”。
是否有任何可用的方法可以说明该文件已经存在于 svn 中...类似于 isAlreadyUnderVersionControl(file)。