[TYPO3-core] src-, dummy- and blankpackage: back and forth - and forth and back?!
Philipp Gampe
typo3.lists at philippgampe.info
Thu Jul 28 23:41:56 CEST 2011
Hi Oliver,
Oliver Hader wrote:
>> This should be really easy:
>> $ git diff --name-only TYPO3_4-5-2 TYPO3_4-5-3
>> This returns all changed files between 4.5.2 and 4.5.3.
> Thanks for the suggestion. I'm not sure whether this diff command
> includes changes in submodules as well (extbase, fluid, dbal, workspaces
> and version).
No they are not. And this list also includes deleted files too.
I suggest the following (more complex version):
git diff TYPO3_4-5-2 TYPO3_4-5-3 --name-status |egrep -v ^D\|R |cut -c 3-
And then include a .txt list of deleted and renamed files by using egrep -v
^M\|R |cut -c 3- >> deleted.txt and egrep -v ^M\|D |cut -c 3- >> renamed.txt
For submodules we can use git submodule foreach "..." and then merge the
result.
By the way, the tag for TYPO3_4-5-4 is missing.
Best regards
--
Philipp Gampe
More information about the TYPO3-team-core
mailing list