diff options
author | Daniel Hengeveld <danielwh@gmail.com> | 2012-12-19 14:51:49 -0800 |
---|---|---|
committer | Daniel Hengeveld <danielwh@gmail.com> | 2012-12-19 14:51:49 -0800 |
commit | 13a24fbe6bcb13375ee7bc43b089335867c06701 (patch) | |
tree | e2c0aef95c9b7febec081c82137856c38b7e427c | |
parent | 2944626570afd4f19fb06f7a56c315e462048d60 (diff) | |
parent | fa5763a70a530df55974828098cce5c3d46deafb (diff) | |
download | gitignore-13a24fbe6bcb13375ee7bc43b089335867c06701.tar.gz gitignore-13a24fbe6bcb13375ee7bc43b089335867c06701.zip |
Merge pull request #456 from jan0sch/master
Added gitignore file for Typo3.
-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/ |