commented out options I ignore.
diff --git a/static.py b/static.py
--- a/static.py
+++ b/static.py
@@ -434,8 +434,9 @@ def static(ui, repo, target=None, **opts
cmdtable = {
# "command-name": (function-call, options-list, help-string)
"static": (static,
- [('r', 'rev', None, 'parse the given revision'),
- ('a', 'all', None, 'parse all revisions (requires much space)'),
+ [
+ #('r', 'rev', None, 'parse the given revision'),
+ #('a', 'all', None, 'parse all revisions (requires much space)'),
('n', 'name', "", 'the repo name. Default: folder or last segment of the repo-path.'),
('u', 'upload', "", 'upload the repo to the given ftp host. Format: user:password@host/path/to/dir'),
('f', 'force', False, 'force recreating all commit files. Slow.'),