X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/stgit/blobdiff_plain/051090dd538aa6c025a22ae896e2af1713e1522f..9b4a6e70a1390d653201e48e12d09005b3fba6c8:/contrib/stgit-completion.bash?ds=sidebyside diff --git a/contrib/stgit-completion.bash b/contrib/stgit-completion.bash index b3b23d4..1867e6b 100644 --- a/contrib/stgit-completion.bash +++ b/contrib/stgit-completion.bash @@ -18,6 +18,7 @@ _stg_commands=" diff clean clone + coalesce commit cp edit @@ -238,6 +239,7 @@ _stg () # repository commands id) _stg_patches $command _all_patches ;; # stack commands + coalesce) _stg_patches $command _applied_patches ;; float) _stg_patches $command _all_patches ;; goto) _stg_patches $command _all_other_patches ;; hide) _stg_patches $command _unapplied_patches ;; @@ -249,7 +251,7 @@ _stg () # 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 ;;