A `git add -A` during the v4.4.0 bump accidentally tracked the announcement art (announce/changelog/ponytail-*.gif) in the repo root. Untrack them and gitignore the pattern; they stay on disk for posting but out of the repo.
17 lines
247 B
Plaintext
17 lines
247 B
Plaintext
# Secrets, never commit API keys
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# Dependencies
|
|
node_modules/
|
|
|
|
# promptfoo eval artifacts
|
|
.promptfoo/
|
|
benchmarks/output*
|
|
|
|
# one-off social/announcement art, not repo content
|
|
announce-*.png
|
|
changelog-*.png
|
|
ponytail-*.gif
|