Last active
August 29, 2015 14:02
-
-
Save zsim0n/2ef2d608888addd315c1 to your computer and use it in GitHub Desktop.
a TYPO3 CMS gitingore
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## TYPO3 v4 | |
# Ignore serveral upload and file directories. | |
/fileadmin/user_upload/ | |
/fileadmin/_temp_/ | |
/uploads/ | |
# Alternative Ignore all fileadmin and enable only a few | |
# /fileadmin | |
# !/fileadmin/res | |
# !/fileadmin/template | |
# !/fileadmin/templates | |
# Ignore cache | |
/typo3conf/temp_CACHED* | |
/typo3conf/temp_fieldInfo.php | |
# Ignore local config which overrides typo3 config. | |
# You should include your local stuff with `@include('localconf_local.php');` at the end of localconf.php. | |
# See http://stackoverflow.com/questions/11905360/how-best-to-manage-typo3-installations-using-git for details. | |
/typo3conf/localconf_local.php | |
# Ignore system folders, you should have them symlinked. | |
# If not comment out the following two entries. | |
/typo3 | |
/t3lib | |
# Ignore temp directory. | |
/typo3temp/ | |
# Translation | |
/typo3conf/l10n | |
# Extensions only site specific | |
/typo3conf/ext | |
!/typo3conf/ext/site1_* | |
#log files | |
/htdocs/typo3conf/*.log |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment