// I also need to create a new File, as it is actually done by the SVN
// It's the same of the old one, but with a different path
SVNVersionedFile newFile = (SVNVersionedFile) createFile(newRevisionFileName);
newRevision.setChangeSet(changeSet);
changeSet.addRevision(newRevision); // Transaction -> SVNRevision
newFile.addRevision(newRevision); // File -> SVNRevision
newRevision.setFile(newFile); // SVNRevision -> File
// Keep track of a new file ancestor
newRevision.setAncestor(oldRevision);
// I check whether I'm connecting the new SVNRevision to a Branch or to a Release
if ((branch != null) && (release == null)) {