Re: [PATCH 00/12] completion: speed up refs completion

2017-02-06 Thread Jacob Keller
On Mon, Feb 6, 2017 at 11:36 AM, SZEDER Gábor wrote: > On Mon, Feb 6, 2017 at 7:31 PM, Jacob Keller wrote: >> On Fri, Feb 3, 2017 at 7:15 PM, Jacob Keller wrote: >>> I haven't had a chance to further investigate, but I tried

Re: [PATCH 00/12] completion: speed up refs completion

2017-02-06 Thread SZEDER Gábor
On Mon, Feb 6, 2017 at 7:31 PM, Jacob Keller wrote: > On Fri, Feb 3, 2017 at 7:15 PM, Jacob Keller wrote: >> I haven't had a chance to further investigate, but I tried this series >> out (from your github) and it appears that this series (or the >>

Re: [PATCH 00/12] completion: speed up refs completion

2017-02-06 Thread Jacob Keller
On Fri, Feb 3, 2017 at 7:15 PM, Jacob Keller wrote: > I haven't had a chance to further investigate, but I tried this series > out (from your github) and it appears that this series (or the > previous series for __gitdir work) breaks "git log" ref completion. > I'll have

Re: [PATCH 00/12] completion: speed up refs completion

2017-02-03 Thread Junio C Hamano
Jacob Keller writes: > On Thu, Feb 2, 2017 at 8:15 PM, Jacob Keller wrote: >> On Thu, Feb 2, 2017 at 6:53 PM, SZEDER Gábor wrote: >>> This series speeds up refs completion for large number of refs, partly >>> by giving up

Re: [PATCH 00/12] completion: speed up refs completion

2017-02-03 Thread Jacob Keller
On Thu, Feb 2, 2017 at 8:15 PM, Jacob Keller wrote: > On Thu, Feb 2, 2017 at 6:53 PM, SZEDER Gábor wrote: >> This series speeds up refs completion for large number of refs, partly >> by giving up disambiguating ambiguous refs (patch 6) and partly by

Re: [PATCH 00/12] completion: speed up refs completion

2017-02-02 Thread Jacob Keller
On Thu, Feb 2, 2017 at 6:53 PM, SZEDER Gábor wrote: > This series speeds up refs completion for large number of refs, partly > by giving up disambiguating ambiguous refs (patch 6) and partly by > eliminating most of the shell processing between 'git for-each-ref' > and

[PATCH 00/12] completion: speed up refs completion

2017-02-02 Thread SZEDER Gábor
This series speeds up refs completion for large number of refs, partly by giving up disambiguating ambiguous refs (patch 6) and partly by eliminating most of the shell processing between 'git for-each-ref' and 'ls-remote' and Bash's completion facility. The rest is a bit of preparatory