VersionNumber to = new VersionNumber(toVersion);
if (from.equals(to)) {
return modifications;
}
GitConfiguration configuration = GitConfiguration.createServerConfiguration(root);
LogCommand logCommand = new LogCommand(configuration);
for (Commit commit : logCommand.between(from, to)) {
log.info(commit);
List<VcsChange> vcsChanged = new ArrayList<VcsChange>();
for (NameAndStatus change : commit.getChanges()) {
log.info(change);
vcsChanged.add(createChange(change, fromVersion, toVersion));