On Wed, Mar 08, 2017 at 01:54:02PM +0100, Sebastian Schuberth wrote: > I'm getting > > $ git config --global diff.ignoreSubmodules all > $ git diff > diff --git a/scanners/scancode-toolkit b/scanners/scancode-toolkit > index 65e5c9c..6b021a8 160000 > --- a/scanners/scancode-toolkit > +++ b/scanners/scancode-toolkit > @@ -1 +1 @@ > -Subproject commit 65e5c9c9508441c5f62beff4749cf455c6eadc30 > +Subproject commit 6b021a8addf6d3c5f2a6ef1af6245e095c21d8ec > > but with > > $ git diff --ignore-submodules=all
Hrm. Isn't "all" the default? That's what git-diff(1) says (but I've never used the feature myself). That would imply to me that there's another config option set somewhere (perhaps in the repo-level config). What does: git config --show-origin --get-all diff.ignoresubmodules say? -Peff