[TYPO3-dev] addPItoST43 broken under TYPO3 6.2beta1
Franz Holzinger
franz at ttproducts.de
Fri Nov 15 17:17:36 CET 2013
Hello Xavier,
Le 15. 11. 13 13:16, Xavier Perseguers a écrit :
>> I have discovered how to build the tar.gz file on a LINUX command shell:
>>
>> git clone git://git.typo3.org/Packages/TYPO3.CMS.git
>> tar --exclude='TYPO3.CMS/.*' -zcvf typo3_src-master.tar.gz TYPO3.CMS
>>
>> Then I get the file typo3_src-master.tar.gz which I can use as the known
>> TYPO3 tar.gz files.
>>
>> The only difference is that I get the main folder name TYPO3.CMS instead
>> of something like typo3_src-6.2.0xxx.
>> I get this by executing a
>>
>> mv TYPO3.CMS typo3_src-6.2.0-developer
>
> It is not really clear to me why you don't do simply that:
>
> $ git clone git://git.typo3.org/Packages/TYPO3.CMS.git typo3_src-master
Thanks, this makes it easier.
> $ tar zcvf typo3_src-master.tar.gz typo3_src-master
This has the drawback that also the hidden .git directory and all the
files inside of it will be packed into the archive.
So this line will do the job:
$ tar --exclude='typo3_src-master/.*' -zcvf typo3_src-master.tar.gz
typo3_src-master
A git newbe question:
I must now regularly visit the folder typo3_src-master and execute a
$ git pull
command in order to get the latest update of the TYPO3 core? Afterwards
I repeat the tar step again.
- Franz
More information about the TYPO3-dev
mailing list