Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>There's is typical <code>.gitignore</code></p> <pre><code>/fileadmin/user_upload/ /fileadmin/_temp_/ /uploads/ /typo3conf/temp_CACHED* /typo3conf/temp_fieldInfo.php /typo3conf/localconf_local.php /typo3/ /t3lib/ /typo3temp/ </code></pre> <p>Keep in mind that when using <code>TYPO3</code> with <code>git</code> you should not install any extension on the remote with <code>Extension Manager</code>! </p> <p>Instead import ext locally, install it locally and then commit and push ext's files and modified <code>localconf.php</code> to remote server.</p> <p>At the end of the <code>localconf.php</code> include <code>localconf_local.php</code> (ignored)</p> <pre><code>@include('localconf_local.php'); </code></pre> <p>It will allow to override ie. credentials for DB, or custom <code>ImageMagick</code> path without changing the original <code>localconf.php</code>. Each dev in the team of course writes his own values to <code>localconf_local.php</code>.</p> <p>Typical TYPO3 folders ignored in <code>.gitignore</code> should be created manually at each instance ie.</p> <p><code>typo3temp</code></p> <p><code>fileadmin/user_upload</code></p> <p>Of course you need also download TYPO3 sorces (<code>typo3</code>, <code>t3lib</code> folders) - there is no bigger sense to keep them under version control.</p> <p>Other things, like <code>uploads</code> should be downloaded manually from the remote, so it's best to write a script which will pack it and every developer will have possibility to download it with some link. You can't add this to git repo as these files are just created while creating the content element, so if you won't ignore them you risk a huge merging conflict soon.</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload