diff options
author | Jens Jahnke <jan0sch@gmx.net> | 2012-10-17 12:05:58 +0200 |
---|---|---|
committer | Jens Jahnke <jan0sch@gmx.net> | 2012-10-17 12:05:58 +0200 |
commit | 0fc164e94ee77c8e8b3ffe78e614bf7ce7699eb7 (patch) | |
tree | 45274c0c6839d36f986c7d599c8d5b443d466679 /Typo3.gitignore | |
parent | 747efedec0a85efb8234710f05629ca5382e3914 (diff) | |
download | gitignore-0fc164e94ee77c8e8b3ffe78e614bf7ce7699eb7.tar.gz gitignore-0fc164e94ee77c8e8b3ffe78e614bf7ce7699eb7.zip |
Added gitignore file for Typo3.
To make it easier to handle typo3 under git.
There is a related entry at stackoverflow:
http://stackoverflow.com/questions/11905360/how-best-to-manage-typo3-installations-using-git
Diffstat (limited to 'Typo3.gitignore')
-rw-r--r-- | Typo3.gitignore | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Typo3.gitignore b/Typo3.gitignore new file mode 100644 index 00000000..0ee23cbf --- /dev/null +++ b/Typo3.gitignore @@ -0,0 +1,18 @@ +## Typo3 +# Ignore serveral upload and file directories. +/fileadmin/user_upload/ +/fileadmin/_temp_/ +/uploads/ +# 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/ |