'git reflog <ref>' is a valid command, therefore offer reference completion. Signed-off-by: Michael Schubert <mschub@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 8648a36..63d0f08 100755 --- a/contrib/completion/git-completion.bash +++ b/contrib/completion/git-completion.bash @@ -1774,7 +1774,7 @@ _git_reflog () local subcommand="$(__git_find_on_cmdline "$subcommands")" if [ -z "$subcommand" ]; then - __gitcomp "$subcommands" + __gitcomp "$subcommands $(__git_refs)" else __gitcomp "$(__git_refs)" fi -- 1.7.7.rc3 -- 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