Created
October 21, 2024 09:35
-
-
Save PaulRBerg/73a1d0efe479d8083443e5e67a0b2818 to your computer and use it in GitHub Desktop.
My global .gitignore file
This file contains 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
# Dotfiles | |
.extra | |
# Environment files | |
.env | |
.env.deployment | |
.envrc | |
# Files that might appear on external disks | |
.Spotlight-V100 | |
.Trashes | |
# Folder view configuration files | |
.DS_Store | |
Desktop.ini | |
# Git residue | |
.git/ | |
*.orig | |
# IDEs | |
*.iml | |
.idea/ | |
# Node | |
npm-error.log | |
yarn-error.log | |
/node_modules | |
# Python | |
.python-version | |
/env | |
*.pyc | |
# Ruby | |
/.bundle | |
# Temporary files | |
/tmp | |
/tmp**/* | |
# Thumbnail cache files | |
._* | |
Thumbs.db | |
# WebAssembly | |
/.emsdk |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment