You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

.gitignore 1.2KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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. /apps/files_external/3rdparty/irodsphp/PHPUnitTest
  18. /apps/files_external/3rdparty/irodsphp/web
  19. /apps/files_external/3rdparty/irodsphp/prods/test
  20. /apps/files_external/3rdparty/irodsphp/prods/tutorials
  21. /apps/files_external/3rdparty/irodsphp/prods/test*
  22. # ignore themes except the README
  23. /themes/*
  24. !/themes/README
  25. # just sane ignores
  26. .*.sw[po]
  27. *.bak
  28. *.BAK
  29. *~
  30. *.orig
  31. *.class
  32. .cvsignore
  33. Thumbs.db
  34. *.py[co]
  35. _darcs/*
  36. CVS/*
  37. .svn/*
  38. RCS/*
  39. *.backup*
  40. # kdevelop
  41. .kdev
  42. *.kdev4
  43. *.kate-swp
  44. # Lokalize
  45. *lokalize*
  46. # eclipse
  47. .project
  48. .settings
  49. # netbeans
  50. nbproject
  51. # phpStorm
  52. .idea
  53. *.iml
  54. # geany
  55. *.geany
  56. # Cloud9IDE
  57. .settings.xml
  58. .c9revisions
  59. # vim ex mode
  60. .vimrc
  61. # Mac OS
  62. .DS_Store
  63. # WebFinger
  64. .well-known
  65. /.buildpath
  66. # Tests
  67. /tests/phpunit.xml
  68. # Node Modules
  69. /build/node_modules/
  70. # Tests - auto-generated files
  71. /data-autotest
  72. /tests/coverage*
  73. /tests/autoconfig*
  74. /tests/autotest*