*
* @param options the parameter set
* @return the built command
*/
static PullWebOp buildPull(ParameterSet options) {
PullWebOp command = new PullWebOp();
command.setFetchAll(Boolean.valueOf(options.getFirstValue("all", "false")));
command.setRefSpec(options.getFirstValue("ref", null));
command.setRemoteName(options.getFirstValue("remoteName", null));
command.setAuthorName(options.getFirstValue("authorName", null));
command.setAuthorEmail(options.getFirstValue("authorEmail", null));
return command;
}