Update .gitignore file to include new patterns

The .gitignore file has been updated to include two new ignore patterns. These alterations help to ignore all 'out.' files with any extension and any file with '.old.' in its name. This ensures that temporary or backup files do not get included in the repo unintentionally.
This commit is contained in:
Yandrik 2024-02-05 09:48:19 +01:00
parent d9eb6f1c64
commit ef4f97d544
1 changed files with 2 additions and 1 deletions

3
.gitignore vendored
View File

@ -8,5 +8,6 @@ apikey.secret
*.PNG
out.md
out.old.md
out.*.md
*.old.*
/__pycache__