Last active
May 1, 2025 09:49
-
-
Save PaulRBerg/05448c9fe04ff268e477e09debb6e50d to your computer and use it in GitHub Desktop.
Global .gitignore for macOS
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
# Dotfiles | |
.extra | |
# Environment files | |
.env | |
.env.deployment | |
.env.staging | |
.env.production | |
.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