Documentation
- 1 Getting started
- 2 Integrated fundamentals
- 3 Content store
- 4 Blocks
- 5 Multi channel publishing
- 6 Storage
- 7 Themes and templating
- 8 Solr
- 9 Contributing
- 9.1 Guidelines and conventions
- 9.3 Integrated Branch Model
- 9.4 Make changes in existing bundles with a fork and pull request
- 9.5 Best practices
- 9 Social media
- 9 Users
9.4 Make changes in existing bundles with a fork and pull request
If you want to make changes in existing bundles, a pull request is required.
The Integrated bundles are currently hosted on Bitbucket, so make sure you have a Bitbucket account.
Follow these steps to create a fork and make your own changes:
- Find the Integrated repository you want to change (this is the repo list).
- Change the composer.json of your development setup to your forked repository and update it:
composer.json snippet:
1 2 3 4 5 6 | "repositories": [ { "type": "vcs", "url": "https://bitbucket.org/username/integrated-content-bundle.git" } ], |
- Update composer: php composer.phar update
- Verify:
cd vendor/integrated/content-bundle
git remote show origin
You should see your own fork there. - Make changes and push them to your fork
- Go to Bitbucket and create a pull request. Always push to a seperate (new) branche (see Branche Model)