Re: git add --all does not respect submodule..ignore

2018-01-30 Thread Jacob Keller
On Tue, Jan 30, 2018 at 1:56 PM, Stefan Beller wrote: > The assume-unchanged bit is a performance optimisation for powerusers, > but its documentation words it in a less dangerous way, such that it sounds > as if it is a UX feature instead of a performance thing. I'd stay away

Re: git add --all does not respect submodule..ignore

2018-01-30 Thread Stefan Beller
On Tue, Jan 30, 2018 at 12:25 PM, Michael Scott-Nelson wrote: > Giving a submodule "ignore=all" or "ignore=dirty" in .gitmodule > successfully removes that module from `git status` queries. However, > these same diffs are automatically added by git-add, eg `git add .` or >

git add --all does not respect submodule..ignore

2018-01-30 Thread Michael Scott-Nelson
Giving a submodule "ignore=all" or "ignore=dirty" in .gitmodule successfully removes that module from `git status` queries. However, these same diffs are automatically added by git-add, eg `git add .` or `git add --all` adds the submodules that we want ignored. This seems inconsistent and