18 lines
246 B
Plaintext
18 lines
246 B
Plaintext
# Secrets Management .gitignore
|
|
# Ensure no secrets are committed to version control
|
|
|
|
# All secret files
|
|
*.txt
|
|
!*.example.txt
|
|
|
|
# Secret directories (but keep structure)
|
|
*/
|
|
!.gitignore
|
|
|
|
# Backup files
|
|
*.bak
|
|
*.backup
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp |