I am making SVN files using the API available in SVNKit using the code below
ourClientManager.getWCClient().doAdd(subFile, false, false, true, false); ourClientManager.getCommitClient().doCommit(path, false, comment, false, false);
When I commit a new directory, the file in it is automatically committed. (I set up a recursive false.) Is there a way to stop this? I want to pass another comment for the new fixed directory and file, and I want it to execute them separately. Please suggest if there is a way.
source share