summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (from parent 1:
61fb81b)
This was an artificial limit which upset many people (including me).
Signed-off-by: Catalin Marinas <catalin.marinas@gmail.com>
# patch commands
delete) _stg_patches $command _all_patches ;;
edit) _stg_patches $command _applied_patches ;;
# patch commands
delete) _stg_patches $command _all_patches ;;
edit) _stg_patches $command _applied_patches ;;
- export) _stg_patches $command _applied_patches ;;
+ export) _stg_patches $command _all_patches ;;
files) _stg_patches $command _all_patches ;;
log) _stg_patches $command _all_patches ;;
mail) _stg_patches $command _all_patches ;;
files) _stg_patches $command _all_patches ;;
log) _stg_patches $command _all_patches ;;
mail) _stg_patches $command _all_patches ;;
diff_flags = []
applied = crt_series.get_applied()
diff_flags = []
applied = crt_series.get_applied()
+ unapplied = crt_series.get_unapplied()
- patches = parse_patches(args, applied)
+ patches = parse_patches(args, applied + unapplied, len(applied))