X-Git-Url: https://git.distorted.org.uk/~mdw/stgit/blobdiff_plain/26aab5b04fa4ba13f48948de73e497cf0a315ad1..9a6e2cc3e43ca33cee2f069b28cb8029e3a127cc:/stgit/commands/status.py diff --git a/stgit/commands/status.py b/stgit/commands/status.py index 15fbcf3..bd3edfb 100644 --- a/stgit/commands/status.py +++ b/stgit/commands/status.py @@ -54,11 +54,21 @@ options = [make_option('-m', '--modified', action = 'store_true'), make_option('-u', '--unknown', help = 'show unknown files only', + action = 'store_true'), + make_option('-x', '--noexclude', + help = 'do not exclude any files from listing', + action = 'store_true'), + make_option('--reset', + help = 'reset the current tree changes', action = 'store_true')] def func(parser, options, args): """Show the tree status """ - git.status(args, options.modified, options.new, options.deleted, - options.conflict, options.unknown) + if options.reset: + resolved_all() + git.reset() + else: + git.status(args, options.modified, options.new, options.deleted, + options.conflict, options.unknown, options.noexclude)