Created
March 10, 2026 10:12
-
-
Save hereisderek/1c41e174d9b61be79bb14f469ae18601 to your computer and use it in GitHub Desktop.
gitignore
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # ========================= | |
| # Operating System Files | |
| # ========================= | |
| # macOS | |
| .DS_Store | |
| .AppleDouble | |
| .LSOverride | |
| ._* | |
| .DocumentRevisions-V100 | |
| .fseventsd | |
| .Spotlight-V100 | |
| .TemporaryItems | |
| .Trashes | |
| .VolumeIcon.icns | |
| .com.apple.timemachine.donotpresent | |
| # Windows | |
| Thumbs.db | |
| Thumbs.db:encryptable | |
| ehthumbs.db | |
| ehthumbs_vista.db | |
| *.cab | |
| *.lnk | |
| desktop.ini | |
| $RECYCLE.BIN/ | |
| # Linux | |
| *~ | |
| .fuse_hidden* | |
| .directory | |
| .Trash-* | |
| .nfs* | |
| # ========================= | |
| # Editors and IDEs | |
| # ========================= | |
| # VS Code | |
| .vscode/* | |
| !.vscode/settings.json | |
| !.vscode/tasks.json | |
| !.vscode/launch.json | |
| !.vscode/extensions.json | |
| *.code-workspace | |
| # IntelliJ / JetBrains | |
| .idea/ | |
| *.iml | |
| *.iws | |
| # Vim | |
| .*.sw[a-p] | |
| .*.s[a-w][a-z] | |
| *.un~ | |
| Session.vim | |
| Sessionx.vim | |
| tags | |
| # Sublime Text | |
| *.tmlanguage.cache | |
| *.tmPreferences.cache | |
| *.stTheme.cache | |
| *.sublime-workspace | |
| *.sublime-project | |
| # ========================= | |
| # General / Homelab | |
| # ========================= | |
| # Archives | |
| # *.7z | |
| # *.dmg | |
| # *.gz | |
| # *.iso | |
| # *.jar | |
| # *.rar | |
| # *.tar | |
| # *.zip | |
| # Logs and Databases | |
| *.log | |
| *.sqlite | |
| *.db | |
| # Python (often run globally in homelab) | |
| __pycache__/ | |
| *.py[cod] | |
| *$py.class |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment