https://github.com/pivotal-cf/docs-book-redis
The book repository uses these branches:
- Edge builds from the master content branch are available on staging here. Pipeline here.
- Master builds from the published content branches in this repository (2.0, 1.14, 1.13, etc). Pipeline here.
Cross-product partials for Redis for PCF are single sourced from the Services Partials repository.
Previously, these partials were sourced from the v018.x branch of the On Demand Service Broker SDK content repository.
All documentation for the next unreleased version of Redis is in master
.
Always make changes you want carried forward in the master branch. This includes:
- Unreleased features
- Doc bug fixes
- Doc reorganization or enhancement
- 2.0: Live docs at staging (https://docs-pcf-staging.cfapps.io/redis/2-0/) and production (https://docs.pivotal.io/redis/2-0/)
- 1.14: Live docs at staging (https://docs-pcf-staging.cfapps.io/redis/1-14/) and production (https://docs.pivotal.io/redis/1-14/)
- 1.13: Live docs at staging (https://docs-pcf-staging.cfapps.io/redis/1-13/) and production (https://docs.pivotal.io/redis/1-13/)
- 1.12: Live docs at staging (https://docs-pcf-staging.cfapps.io/redis/1-12/) and production (https://docs.pivotal.io/redis/1-12/)
- 1.11: This branch is no longer in use because the docs are no longer live. PDF available at https://docs.pivotal.io/archives/redis-1.11.pdf.
- 1.10: This branch is no longer in use because the docs are no longer live. PDF available at https://docs.pivotal.io/archives/redis-1.10.pdf.
- 1.9: This branch is no longer in use because the docs are no longer live. PDF available at https://docs.pivotal.io/archives/redis-1.9.pdf.
- 1.8: This branch is no longer in use because the docs are no longer live. PDF available at https://docs.pivotal.io/archives/redis-1.8.pdf.
- 1.7: This branch is no longer in use because the docs are no longer live. PDF available at https://docs.pivotal.io/archives/redis-1.7.pdf.
- 1.6: This branch is no longer in use because the docs are no longer live. PDF available at https://docs.pivotal.io/archives/redis-1.6.pdf.
- 1.5: This branch is no longer in use because the docs are no longer live. PDF available at https://docs.pivotal.io/archives/redis-1.5.pdf.
- 1.5: This branch is no longer in use because the docs are no longer live. PDF available at https://docs.pivotal.io/archives/redis-1.5.pdf.
- 1.4: This branch is no longer in use because the docs are no longer live. PDF available at https://docs.pivotal.io/archives/redis-1.4.pdf.
-
Always cherry-pick any changes to live branches into master if you want those changes carried forward.
-
If necessary, immediately cherry-pick/copy changes from master that you want to push immediately to production into the appropriate live branch above.
Use this section to specify spelling of special words for Redis for PCF:
- on-demand plan
- shared-VM plan
Edge Pipeline
The master
branch builds to the
cf-services-edge > redis-edge pipeline, and does not go to production until release time: Edge pipeline.
Production Pipeline
All live branches build to the cf-services > redis pipeline,
and are manually pushed to production as needed: Production pipeline.
-
Make changes in the first branch (usually
master
), commit them, and then push them to the repository. -
Copy part of the SHA for the above commit. To find this, you can do a
git log
, or look at the list of commits in the github repository. -
Checkout the second branch, where you want to copy the changes you made in the first branch.
-
Run this command, using the SHA snippet you copied above:
git cherry-pick <SHA_SNIPPET>
For example:git cherry-pick 5dc22fe00
Do the cherry-pick immediately to lessen the chances of conflicts. Otherwise, you may need to resolve conflicts in order to complete the cherry-pick.
-
Do a
git push
after the cherry-pick is complete.