您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

Typo3.gitignore 638B

123456789101112131415161718
  1. ## Typo3
  2. # Ignore serveral upload and file directories.
  3. /fileadmin/user_upload/
  4. /fileadmin/_temp_/
  5. /uploads/
  6. # Ignore cache
  7. /typo3conf/temp_CACHED*
  8. /typo3conf/temp_fieldInfo.php
  9. # Ignore local config which overrides typo3 config.
  10. # You should include your local stuff with `@include('localconf_local.php');` at the end of localconf.php.
  11. # See http://stackoverflow.com/questions/11905360/how-best-to-manage-typo3-installations-using-git for details.
  12. /typo3conf/localconf_local.php
  13. # Ignore system folders, you should have them symlinked.
  14. # If not comment out the following two entries.
  15. /typo3/
  16. /t3lib/
  17. # Ignore temp directory.
  18. /typo3temp/