feat: Add support for .txt and .md files in .gitignore

This commit updates the .gitignore file to include the "*.txt" and "*.md" patterns, allowing .txt and .md files to be tracked by Git. This change ensures that text and markdown files are included in the repository's version control system.
main
Lasse Studion 2 years ago
parent d5e1e36b66
commit 36afcd14f6
  1. 2
      .gitignore

2
.gitignore vendored

@ -1,5 +1,7 @@
*
!*.py
!*.txt
!*.md
.env
!.gitignore
.venv
Loading…
Cancel
Save