From: Yann Dirson Date: Fri, 13 Jul 2007 22:43:55 +0000 (+0100) Subject: Disallow non-patch args to "stg show" (gna #8453). X-Git-Tag: v0.13~18 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/stgit/commitdiff_plain/a892f43759fe75137cfdf5af10da32f41477a553 Disallow non-patch args to "stg show" (gna #8453). Git-core refs and patch@branch args were not allowed in the multiple-argument form of "stg show". For consistency we completely disallow them: git-core refs are available from git-show, and "stg show patch@branch" as "stg show patch -b branch". Signed-off-by: Yann Dirson --- diff --git a/stgit/commands/show.py b/stgit/commands/show.py index c59ac68..3bf4f20 100644 --- a/stgit/commands/show.py +++ b/stgit/commands/show.py @@ -55,12 +55,7 @@ def func(parser, options, args): elif len(args) == 0: patches = ['HEAD'] else: - if len(args) == 1 and args[0].find('..') == -1 \ - and not crt_series.patch_exists(args[0]): - # it might be just a commit id - patches = args - else: - patches = parse_patches(args, applied + unapplied, len(applied)) + patches = parse_patches(args, applied + unapplied, len(applied)) if options.diff_opts: diff_flags = options.diff_opts.split()