[TYPO3-core] Reviews

Steffen Kamper info at sk-typo3.de
Tue Mar 15 09:47:19 CET 2011


Hi,

the reason i ask is that i don't see much testing. Ok, it's more silent, 
i'm not surprosed, but, there is nearly no testing. That makes me think 
that most have difficulties to apply a given patchset for testing.

So i give you an example how i do it, hopefully it helps some who didn't 
used that so far.

If you have cloned the rep, jsut navigate in the root directory of your 
cloned repository.
1) make sure you have the latest sources:
 >>git pull
2) make sure you are in master
 >>git checkout master

Now you are ready.
For example, i want to test this issue:
https://review.typo3.org/#change,1170
You will find a given url to apply this patch:
git fetch git://git.typo3.org/TYPO3v4/Core refs/changes/70/1170/1 && git 
checkout FETCH_HEAD

Copy this url, paste it in your console and press return. The patch is 
now applied. Make it into a branch:
 >>git checkout -b rfc/master/17935
(name of the branch is only a suggestion)

Now test it. If everything is fine, review the patch and use "Verified".

If you want to improve the patch, make changes and commit:
 >>git commit -a --amend
then save only, you mostly don't change the commit message.
push it back:
 >>git push origin Head:refs/for/master/17935
In this case the patch is in a topic "17935", thats the reason i 
appended the topic.


Done.

Hope that this helps some of you, even it'S all written down in the wiki.

vg Steffen


More information about the TYPO3-team-core mailing list