chore(gitignore): declare intent to track .devflow/conventions.md - #325
Merged
Conversation
Add a negation entry for .devflow/conventions.md to record that this file should eventually be version-controlled when the surrounding infrastructure is in place. Currently inert for two reasons: 1. .devflow/conventions.md does not exist on disk yet. 2. Git does not descend into an ignored parent directory, so a file-level negation inside .devflow/ has no effect until the parent directory is also un-ignored. The parent directory is deliberately left ignored (see PF-025: a !dir/sub/ negation under an ignored parent previously exposed ~66 .devflow/docs/ paths carrying local filesystem paths and personal email addresses in the public repository). Un-ignoring the parent is out of scope here. This commit clears the working tree ahead of the v0.4.0 release pre-flight, which requires a clean tree. Co-Authored-By: Claude <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds a negation entry for
.devflow/conventions.mdto.gitignore, declaring the intent that this file should eventually be version-controlled.What this line does: Records that
.devflow/conventions.mdis a candidate for tracking.What this line does NOT do: It is currently inert. Git does not descend into an ignored parent directory to evaluate file-level negations — so
!.devflow/conventions.mdhas no practical effect until the parent.devflow/directory is also un-ignored. The file also does not yet exist on disk.Why the parent is left ignored (PF-025): A prior incident (
!dir/sub/negation under an ignored parent) un-ignored the entire.devflow/docs/subtree, exposing ~66 paths carrying local filesystem paths and personal email addresses in a public repository. Un-ignoring the parent directory is deliberately out of scope here and must be a separate, carefully reviewed change.Why commit it now: This clears the working tree ahead of the v0.4.0 release pre-flight, which requires a clean tree. Leaving the modification uncommitted would block the pre-flight.
Changes
.gitignore: one line added —!.devflow/conventions.mdBreaking Changes
None.
Testing
git diff --stat main..HEADconfirms exactly 1 file changed, 1 insertion.node scripts/verify-no-control-bytes.mjspasses (531 files, 0 violations).Related Issues
None (working-tree hygiene ahead of release pre-flight).