On Mon, Feb 05, 2024 at 05:09:28PM -0900, Britton Leo Kerin wrote: > The options accepted by git-log are also accepted by at least one other > command (git-bisect). Factor the common option completion code into > a new function and use it from _git_log. > > Signed-off-by: Britton Leo Kerin <britton.kerin@xxxxxxxxx> > --- > contrib/completion/git-completion.bash | 18 +++++++++++++++--- > 1 file changed, 15 insertions(+), 3 deletions(-) > > diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.bash > index 57c6e09968..8c3b1b8e96 100644 > --- a/contrib/completion/git-completion.bash > +++ b/contrib/completion/git-completion.bash > @@ -2089,10 +2089,12 @@ __git_diff_merges_opts="off none on first-parent 1 separate m combined c dense-c > __git_log_pretty_formats="oneline short medium full fuller reference email raw format: tformat: mboxrd" > __git_log_date_formats="relative iso8601 iso8601-strict rfc2822 short local default human raw unix auto: format:" > > -_git_log () > +# Complete porcelain (i.e. not git-rev-list) options and at least some > +# option arguments accepted by git-log. Note that this same set of options > +# are also accepted by some other git commands besides git-log. > +__git_complete_log_opts () > { > - __git_has_doubledash && return > - __git_find_repo_path > + COMPREPLY="" Nit: this is indented with spaces instead of tabs. It would also be nice to mention in the commit message why we empty COMPREPLY here. It didn't happen before either, so this is essentially not a no-op conversion. Patrick > > local merge="" > if [ -f "$__git_repo_path/MERGE_HEAD" ]; then > @@ -2186,6 +2188,16 @@ _git_log () > return > ;; > esac > +} > + > +_git_log () > +{ > + __git_has_doubledash && return > + __git_find_repo_path > + > + __git_complete_log_opts > + [ -z "$COMPREPLY" ] || return > + > __git_complete_revlist > } > > -- > 2.43.0 >
Attachment:
signature.asc
Description: PGP signature