gitignore: protect rough_drafts/*.txt from accidental commits

The user's drafts in rough_drafts/ are real in-progress academic
work. Project discipline (per memory) is to keep them untracked,
but a single accidental `git add -A` could leak unpublished
scholarship into git history. Adding the pattern to .gitignore
makes the protection structural rather than discipline-based.

Scoped to .txt only (the docx->txt converted form the project
actually consumes); does not affect sample.md, .gitkeep, or any
other extensions that might land in rough_drafts/ later.
This commit is contained in:
Mark Eaton
2026-04-11 17:46:00 -04:00
parent 22404fbd6b
commit 2a8c72ae22
+3
View File
@@ -14,3 +14,6 @@ logs/*
.env
.env.*
!.env.example
# rough drafts: real in-progress academic work, do not commit
rough_drafts/*.txt