Re: [PATCH v2] Improve performance of git status --ignored

2017-09-19 Thread Brandon Williams
On 09/18, Jameson Miller wrote: > Improve the performance of the directory listing logic when it wants to list > non-empty ignored directories. In order to show non-empty ignored directories, > the existing logic will recursively iterate through all contents of an ignored > directory. This change

Re: [PATCH v2] Improve performance of git status --ignored

2017-09-18 Thread Junio C Hamano
Jameson Miller writes: > Improve the performance of the directory listing logic when it wants to list > non-empty ignored directories. In order to show non-empty ignored directories, > the existing logic will recursively iterate through all contents of an ignored >

[PATCH v2] Improve performance of git status --ignored

2017-09-18 Thread Jameson Miller
Improve the performance of the directory listing logic when it wants to list non-empty ignored directories. In order to show non-empty ignored directories, the existing logic will recursively iterate through all contents of an ignored directory. This change introduces the optimization to stop

[PATCH v2] Improve performance of git status --ignored

2017-09-18 Thread Jameson Miller
This is the second version of my patches to improve handling of ignored files I have decided to break the original patch series into two parts: 1) Perf improvements to handling ignored directories 2) Expose extra options to control which ignored files are displayed by git status. This patch