File localDir = app.getPlatformFile("", true);
VltContext vCtx = app.createVaultContext(localDir);
vCtx.setVerbose(cl.hasOption(OPT_VERBOSE));
vCtx.setQuiet(cl.hasOption(OPT_QUIET));
Commit s = new Commit(localDir,
localFiles,
cl.hasOption(optNonRecursive),
cl.hasOption(optForce));
vCtx.execute(s);
}