summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (from parent 1:
2b5462d)
Ranges aren't allow to contain the branch:patch format but individual
patches can be specified this way since they are treated as individual
commits.
Signed-off-by: Catalin Marinas <catalin.marinas@gmail.com>
elif len(args) == 0:
patches = ['HEAD']
else:
elif len(args) == 0:
patches = ['HEAD']
else:
- if len(args) == 1 and args[0].find('..') == -1:
- # single patch or commit id
+ if len(args) == 1 or args[0].find('..') == -1:
+ # single patch or one/more commit ids
patches = args
else:
applied = crt_series.get_applied()
patches = args
else:
applied = crt_series.get_applied()