.gitignore 904 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. # the default generated dir + db file
  2. /data
  3. /owncloud
  4. /config/config.php
  5. /config/mount.php
  6. /apps/inc.php
  7. # ignore all apps except core ones
  8. /apps*
  9. !/apps/files
  10. !/apps/files_encryption
  11. !/apps/files_external
  12. !/apps/files_sharing
  13. !/apps/files_trashbin
  14. !/apps/files_versions
  15. !/apps/user_ldap
  16. !/apps/user_webdavauth
  17. # ignore themes except the README
  18. /themes/*
  19. !/themes/README
  20. # just sane ignores
  21. .*.sw[po]
  22. *.bak
  23. *.BAK
  24. *~
  25. *.orig
  26. *.class
  27. .cvsignore
  28. Thumbs.db
  29. *.py[co]
  30. _darcs/*
  31. CVS/*
  32. .svn/*
  33. RCS/*
  34. *.backup*
  35. # kdevelop
  36. .kdev
  37. *.kdev4
  38. *.kate-swp
  39. # Lokalize
  40. *lokalize*
  41. # eclipse
  42. .project
  43. .settings
  44. # netbeans
  45. nbproject
  46. # phpStorm
  47. .idea
  48. *.iml
  49. # geany
  50. *.geany
  51. # Cloud9IDE
  52. .settings.xml
  53. .c9revisions
  54. # vim ex mode
  55. .vimrc
  56. # Mac OS
  57. .DS_Store
  58. # WebFinger
  59. .well-known
  60. /.buildpath
  61. # Tests
  62. /tests/phpunit.xml
  63. # Tests - auto-generated files
  64. /data-autotest
  65. /tests/coverage*
  66. /tests/autoconfig*
  67. /tests/autotest*