*
* @param options the parameter set
* @return the built command
*/
static MergeWebOp buildMerge(ParameterSet options) {
MergeWebOp command = new MergeWebOp();
command.setNoCommit(Boolean.valueOf(options.getFirstValue("noCommit", "false")));
command.setCommit(options.getFirstValue("commit", null));
command.setAuthorName(options.getFirstValue("authorName", null));
command.setAuthorEmail(options.getFirstValue("authorEmail", null));
return command;
}