]> git.ipfire.org Git - thirdparty/git.git/blobdiff - contrib/completion/git-completion.bash
am: support --show-current-patch=diff to retrieve .git/rebase-apply/patch
[thirdparty/git.git] / contrib / completion / git-completion.bash
index e4d9ff4a95ceb56e568131c148de5aaed85219c2..b33c23b71707eed519cf2ff03735fb7b17f3a871 100644 (file)
@@ -1180,6 +1180,7 @@ __git_count_arguments ()
 
 __git_whitespacelist="nowarn warn error error-all fix"
 __git_patchformat="mbox stgit stgit-series hg mboxrd"
+__git_showcurrentpatch="diff raw"
 __git_am_inprogress_options="--skip --continue --resolved --abort --quit --show-current-patch"
 
 _git_am ()
@@ -1198,6 +1199,10 @@ _git_am ()
                __gitcomp "$__git_patchformat" "" "${cur##--patch-format=}"
                return
                ;;
+       --show-current-patch=*)
+               __gitcomp "$__git_showcurrentpatch" "" "${cur##--show-current-patch=}"
+               return
+               ;;
        --*)
                __gitcomp_builtin am "" \
                        "$__git_am_inprogress_options"