Update .gitignore to include additional rules and hidden files
This commit modifies the .gitignore file to add rules for ignoring hidden files and directories, specifically those starting with a dot (e.g., .claude/* and .rules). This change helps maintain a cleaner repository by preventing unnecessary files from being tracked. Additionally, the existing rule for ignoring the DataBackup directory remains intact, ensuring that backup files are excluded from version control.
This commit is contained in:
+3
-1
@@ -23,7 +23,8 @@ _ReSharper*/
|
||||
|
||||
DataBackup/
|
||||
*.db
|
||||
/.claude/*
|
||||
/.*/*
|
||||
.*rules
|
||||
|
||||
# Production secrets and configuration
|
||||
auth-secrets.json
|
||||
@@ -34,3 +35,4 @@ docker-compose.override.yml
|
||||
|
||||
# Runtime data directory
|
||||
/WebApp/Data/*
|
||||
|
||||
|
||||
Reference in New Issue
Block a user