I'm using msysgit 1.9.4.
My .gitignore file, at the root of the repo, looks like this:
build/
a/b/
!a/c/d/e/**/build/
My intent is that, all build/ directories are ignored, unless they are subdirs (any depth) of a/c/d/e/. But a/c/d/e/f/build/ is still getting ignored by Git.
What am I missing here?