Skip to content

Instantly share code, notes, and snippets.

@etobi
Created August 9, 2012 07:26
Show Gist options
  • Save etobi/3301968 to your computer and use it in GitHub Desktop.
Save etobi/3301968 to your computer and use it in GitHub Desktop.
#lwShirt #TYPO3
## TYPO3 Contribution Cheat Sheet http://wiki.typo3.org/Contribution_Walkthrough_with_CommandLine
## Setting up your environment
git clone --recursive git://git.typo3.org/TYPO3v4/Core.git typo3_src-git
cd typo3_src-git
scp -p -P 29418 <username>@review.typo3.org:hooks/commit-msg .git/hooks/
git submodule update --init
git submodule foreach 'scp -p -P 29418 <username>@review.typo3.org:hooks/commit-msg .git/hooks/'
## Reviewing a Change Request
git fetch git://git.typo3.org/TYPO3v4/Core refs/changes/XX/XXX/XX && git checkout FETCH_HEAD
# test and change
git commit --amend -a
git push origin HEAD:refs/for/<release-branch>/<topic>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment