12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- #java开发通用模版
- *.class
- #package file
- *.war
- *.ear
- *.zip
- *.tar.gz
- *.rar
- #maven ignore
- target/
- build/
- #eclipse ignore
- .settings/
- .project
- .classpatch
- #Intellij idea
- .idea/
- /idea/
- *.ipr
- *.iml
- *.iws
- # temp file
- *.log
- *.cache
- *.diff
- *.patch
- *.tmp
- # system ignore
- .DS_Store
- Thumbs.db
- #前端开发能用模板
- # Numerous always-ignore extensions
- *.bak
- *.patch
- *.diff
- *.err
- # temp file for git conflict merging
- *.orig
- *.log
- *.rej
- *.swo
- *.swp
- *.zip
- *.vi
- *~
- *.sass-cache
- *.tmp.html
- *.dump
- # OS or Editor folders
- .DS_Store
- ._*
- .cache
- .project
- .settings
- .tmproj
- *.esproj
- *.sublime-project
- *.sublime-workspace
- nbproject
- thumbs.db
- *.iml
- # Folders to ignore
- .hg
- .svn
- .CVS
- .idea
- node_modules/
- jscoverage_lib/
- bower_components/
- dist/
|