
Untitled
By: a guest on
Jul 29th, 2012 | syntax:
None | size: 0.46 KB | hits: 13 | expires: Never
How is user mapping achieved during migration from MKS to SVN using svn-importer?
/**
* create a new SVN revision based on MksCommit
* @param commit MksCommit object used to construct SVN revision
*/
private void createSvnRevision(MksCommit commit) {
svnModel.createNewRevision(commit.getAuthor(), commit.getDate(), commit.getMessage());
svnModel.getCurRevision().getProperties().set("MKSRevisionNumbers", commit.joinRevisionNumbers());
}