From 36afcd14f6f44ade7de98c86ee03348d89a0b1e0 Mon Sep 17 00:00:00 2001 From: Lasse Studion Date: Thu, 30 May 2024 15:49:38 +0200 Subject: [PATCH] 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. --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index 56e4c6a..c5d7e7d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,7 @@ * !*.py +!*.txt +!*.md .env !.gitignore .venv \ No newline at end of file