Jakob Pfender <jpfender@xxxxxxxxxxxxx> writes: > Enable bash completion for "git help <alias>", analogous to "git > <alias>", which was already implemented. > > Signed-off-by: Jakob Pfender <jpfender@xxxxxxxxxxxxx> > --- > contrib/completion/git-completion.bash | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/contrib/completion/git-completion.bash > b/contrib/completion/git-completion.bash > index 893b771..f9a74d3 100755 > --- a/contrib/completion/git-completion.bash > +++ b/contrib/completion/git-completion.bash > @@ -1506,7 +1506,7 @@ _git_help () > ;; > esac > __git_compute_all_commands > - __gitcomp "$__git_all_commands > + __gitcomp "$__git_all_commands $(__git_aliases) > attributes cli core-tutorial cvs-migration > diffcore gitk glossary hooks ignore modules > repository-layout tutorial tutorial-2 This patch may not be _wrong_ per-se, but it it useful in practice? I dunno. Don't people usually use aliases so that they do not have to type long command names that would need completion? -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html