I'm just now adding a checkout of the files of this repo (except for the .git directory) within another git repo, and I found that git status --ignored reports build/ as being ignored. That indicates an inconsistency between the repo and its own .gitignore.
Indeed, this repo has abuild directory with a .gitkeep file, but the entire build directory is excluded by the top-level .gitignore.
If build/.gitkeep (but nothing else in the build directory) should indeed be in this repo, then perhaps where the top-level .gitignore has:
consider changing it to:
# Build data
/build/*
!build/.gitkeep
I'm just now adding a checkout of the files of this repo (except for the
.gitdirectory) within another git repo, and I found thatgit status --ignoredreportsbuild/as being ignored. That indicates an inconsistency between the repo and its own.gitignore.Indeed, this repo has a
builddirectory with a.gitkeepfile, but the entirebuilddirectory is excluded by the top-level.gitignore.If
build/.gitkeep(but nothing else in thebuilddirectory) should indeed be in this repo, then perhaps where the top-level.gitignorehas:consider changing it to: