Last active
October 12, 2024 18:00
-
-
Save runxel/f3d8caeb01b8b4af30bb8841f92ba0a1 to your computer and use it in GitHub Desktop.
A .gitignore template
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
# custom gitignore | |
# built as an allround, project-agnostic template to copy for me | |
*.cache | |
# py | |
.env | |
.venv | |
*.py | |
*.pyc | |
*.lock | |
*.toml | |
# shortcuts | |
*.lnk | |
*.url | |
# Windows/Thumbnails | |
._* | |
Thumbs.db | |
ehthumbs.db | |
.Bridge* | |
desktop.ini | |
$RECYCLE.BIN/ | |
# macOS | |
.DS_Store | |
.AppleDouble | |
.LSOverride | |
.DocumentRevisions-V100 | |
.fseventsd | |
.Spotlight-V100 | |
.TemporaryItems | |
.Trashes | |
.VolumeIcon.icns | |
.com.apple.timemachine.donotpresent | |
.AppleDB | |
.AppleDesktop | |
**/Network Trash Folder/ | |
**/Temporary Items/ | |
.apdisk | |
.directory | |
# Linux file backups | |
*~ | |
# NPM dependencies | |
node_modules/ | |
# IDE related | |
*.sublime-* | |
.vscode | |
.vscodeignore | |
*.code-workspace |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment