Last active
November 19, 2023 14:07
-
-
Save zorchp/49bc5eaa9d2ec80923445e819cb96782 to your computer and use it in GitHub Desktop.
.gitignore file for MacOS
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
# ~/.gitignore_global | |
# Symlinked into ~/ as .gitignore | |
# written in ~/.gitconfig | |
# [core] | |
# excludesfile = /Users/zorch/.gitignore_global | |
# Compiled source | |
*.dll | |
*.exe | |
*.out | |
# Packages/ Archives | |
*.7z | |
*.dmg | |
*.gz | |
*.iso | |
*.tar | |
*.zip | |
*.pkg | |
# Databases | |
# Logs | |
*.log | |
# project files | |
.idea/ | |
**/.idea/ | |
.vscode/ | |
build/ | |
# OS generated files | |
*.dSYM | |
**/*.dSYM | |
**/*.app | |
**/CmakeCache.txt | |
**/build/* | |
**/CmakeFiles/* | |
**/.DS_Store | |
.DS_Store | |
**/.Spotlight-V100 | |
**/.Trashes | |
**/Thumbs.db |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment