Last active
August 29, 2015 14:23
-
-
Save skwashd/40f2afb74ab5a5adb227 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
# | |
# Global .gitignore file. | |
# | |
# Created by Dave Hall (@skwashd) - http://davehall.com.au | |
# | |
# See https://help.github.com/articles/ignoring-files/#create-a-global-gitignore for installation instructions. | |
# | |
# Licensed under the terms of the WTFPL - http://www.wtfpl.net/txt/copying/ | |
# | |
# Compiled source # | |
################### | |
*.class | |
*.dll | |
*.exe | |
*.o | |
*.so | |
*.pyc | |
# Packages # | |
############ | |
*.7z | |
*.dmg | |
*.gz | |
*.iso | |
*.jar | |
*.rar | |
*.tar | |
*.zip | |
# Logs and databases # | |
###################### | |
*.log | |
*.sql | |
*.sqlite | |
# OS generated files # | |
###################### | |
.DS_Store | |
.DS_Store? | |
._* | |
.Spotlight-V100 | |
.Trashes | |
Icon? | |
ehthumbs.db | |
Thumbs.db | |
# Backup and temp files # | |
*.bak | |
.*.sw? | |
*.un~ | |
# Patches, diffs etc | |
*.patch | |
*.diff | |
*.orig | |
*.rej |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment