Last active
January 7, 2019 16:49
-
-
Save Yehonal/1b5aa682f726af8a48ba55baaf75892f to your computer and use it in GitHub Desktop.
standard .gitignore
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
# | |
# | |
# Git ignore file | |
# | |
# NOTE: Insert your custom rules at the end of this file | |
# | |
!.gitignore | |
# | |
# OS specific | |
# | |
# MacOS | |
.DS_Store | |
# Windows | |
Thumbs.db | |
Thumbs.db:encryptable | |
# | |
# Editors / debuggers / other output files | |
# | |
*~ | |
*.bak | |
*.orig | |
*.patch | |
*.diff | |
callgrind.out.* | |
# | |
# Git stuff | |
# | |
# stgit directories | |
patches-* | |
.git/ | |
*.rej | |
# | |
# IDE & other softwares | |
# | |
/.settings/ | |
/.externalToolBuilders/* | |
# exclude in all levels | |
nbproject/private/ | |
*.ffs_db | |
# | |
# Eclipse | |
# | |
*.pydevproject | |
.metadata | |
.gradle | |
tmp/ | |
*.tmp | |
*.swp | |
*~.nib | |
local.properties | |
.settings/ | |
.loadpath | |
# External tool builders | |
.externalToolBuilders/ | |
/node_modules | |
/npm-debug.* | |
package-lock.json | |
# Locally stored "Eclipse launch configurations" | |
*.launch | |
# CDT-specific | |
.cproject | |
# PDT-specific | |
.buildpath | |
# TeXlipse plugin | |
.texlipse | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment