TYPO3 Source aus git, statt als zip oder tar.gz installieren und updaten
clone git :
1 2 3 4 5 6 7 |
git clone https://git.typo3.org/Packages/TYPO3.CMS.git TYPO3.CMS.git # fetch all tags git fetch --tags # see all tags git tag --list #checkout tag git checkout tags/6.2.17 |
updating to a new Version
1 2 3 4 |
# fetch new tags git fetch --tags git tag --list git checkout tags/6.2.xx |
gucke ob die Version wirklich die richtige ist:
1 |
head ChangeLog |
Nachtrag für Typo3 version 7 LTS:
in der v 7 sind die externen pakete nicht mehr im git dabei. um sie zu installieren/herunterzuladen gibt’s composer.
mit composer die abhängigkeiten installieren, bzw zuerst composer selber updaten:
1 2 |
/usr/local/bin/composer self-update composer install |
Für TYPO3 6.2:
Verlinkung auf unsererm Server, so dass man sieht, welche version:
1 2 3 |
ln -s TYPO3.CMS.git/ typo3_src-6.2.x #rm typo3_src-6.2.latest && ln -s typo3_src-6.2.x typo3_src-6.2.latest ln -sfT typo3_src-6.2.x typo3_src-6.2.latest |
Für TYPO3 7 LTS:
1 2 3 |
ln -s TYPO3.CMS.git/ typo3_src-7.6.x #rm typo3_src-6.2.latest && ln -s typo3_src-6.2.x typo3_src-6.2.latest ln -sfT typo3_src-7.6.x typo3_src-7.6.latest |
Das ganze als Script: