-
-
Notifications
You must be signed in to change notification settings - Fork 168
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e1d3c4e
commit 289ee10
Showing
4 changed files
with
15 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -127,7 +127,7 @@ Quick edits for minor issues, such as typographical errors, misspellings, and En | |
:alt: GitHub Edit this file | ||
``` | ||
1. Make edits, add a commit message, select {guilabel}`Create a new branch for this commit and start a pull request`, then click {guilabel}`Propose changes`. | ||
1. Make your pull request against the branch `6-dev`. | ||
1. Make your pull request against the branch `6.0`. | ||
1. Members who subscribe to the repository will receive a notification and review your request. | ||
1. Request a review from other team members. | ||
|
@@ -148,15 +148,15 @@ This practice differs depending on whether you are making contributions to only | |
This section describes how to make contributions to files in the `plone/documentation` repository only, and excludes files in `submodules/plone.api/docs`, `submodules/plone.restapi/docs` and `submodules/volto/docs`. | ||
1. From the project root directory, sync your local `6-dev` branch with its remote. | ||
1. From the project root directory, sync your local `6.0` branch with its remote. | ||
You might need to resolve conflicts. | ||
```shell | ||
git checkout 6-dev | ||
git checkout 6.0 | ||
git pull | ||
``` | ||
1. Create a new branch from `6-dev`. | ||
1. Create a new branch from `6.0`. | ||
```shell | ||
git checkout -b <new_branch> | ||
|
@@ -195,7 +195,7 @@ This section describes how to make contributions to files in the `plone/document | |
git push | ||
``` | ||
1. Visit the GitHub `documentation` repository, and [create a pull request](https://github.com/plone/documentation/compare) against the branch `6-dev`. | ||
1. Visit the GitHub `documentation` repository, and [create a pull request](https://github.com/plone/documentation/compare) against the branch `6.0`. | ||
1. Members who subscribe to the repository will receive a notification and review your request. | ||
1. Request a review from other team members. | ||
|
@@ -209,15 +209,16 @@ We use `git submodules` to manage multiple repositories. | |
We imported the external repositories the `plone/documentation` repository as described in {doc}`setup-build`. | ||
```{important} | ||
We currently use the branches `plone/documentation@6-dev`, `plone/plone.api@master`, `plone/plone.restapi@master`, and `plone/volto@master` as the main branches for developing Plone 6 Documentation. | ||
We currently use the branches `plone/[email protected]`, `plone/plone.api@master`, `plone/plone.restapi@master`, and `plone/volto@master` as the main branches for developing Plone 6 Documentation. | ||
For Volto, we backport changes to documentation from `plone/volto@master` to `plone/[email protected]`, and deploy documentation from `plone/[email protected]`. | ||
These branches may change as we get closer to a production release. | ||
``` | ||
|
||
1. From the project root directory, sync your local `6-dev` branch with its remote. | ||
1. From the project root directory, sync your local `6.0` branch with its remote. | ||
You might need to resolve conflicts. | ||
|
||
```shell | ||
git checkout 6-dev | ||
git checkout 6.0 | ||
git pull | ||
``` | ||
|
||
|