-
-
Save SyntaxCacao/8c641ebbd023d2586267 to your computer and use it in GitHub Desktop.
Some common .gitignore configurations
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
| # Compiled source # | |
| ################### | |
| *.com | |
| *.class | |
| *.dll | |
| *.exe | |
| *.o | |
| *.so | |
| # Editor generated files # | |
| ########################## | |
| # any files generated by editors or IDEs | |
| # Eclipse | |
| .settings/ | |
| .classpath | |
| .projects | |
| # IntelliJ | |
| *.iml | |
| *.ipr | |
| *.iws | |
| .idea/ | |
| out/ | |
| run/ | |
| # NetBeans | |
| nbproject/ | |
| nbactions.xml | |
| # Sublime Text | |
| *.sublime_project | |
| *.sublime_workspace | |
| # VIM | |
| .*.sw[a-p] | |
| # Logs and databases # | |
| ###################### | |
| # .sql and .sqlite are often used for schema dumps | |
| *.db | |
| *.log | |
| # Packages # | |
| ############ | |
| # it's better to unpack these files and commit the raw source | |
| # git has its own built in compression methods | |
| *.7z | |
| *.dmg | |
| *.gz | |
| *.iso | |
| *.jar | |
| *.rar | |
| *.tar | |
| *.zip | |
| # Package dependencies # | |
| ######################## | |
| # and .sass-cache | |
| bower_components/ | |
| node_modules/ | |
| target/ | |
| .gradle | |
| .sass-cache | |
| dependency-reduced-pom.xml | |
| # OS generated files # | |
| ###################### | |
| .DS_Store | |
| .DS_Store? | |
| ._* | |
| .Spotlight-V100 | |
| .Trashes | |
| Desktop.ini |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Compared with the original .gitignore by octocat, the following changes were made: