123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- #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/
- /src/main/webapp/node_modules/
- jscoverage_lib/
- bower_components/
- dist/
- /src/main/webapp/node_modules/
|