summaryrefslogtreecommitdiffstats
path: root/docs/release-process.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/release-process.md')
-rw-r--r--docs/release-process.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/release-process.md b/docs/release-process.md
index 121c3bf1..93a0f3e0 100644
--- a/docs/release-process.md
+++ b/docs/release-process.md
@@ -49,11 +49,11 @@ control how repo finds updates:
49 49
50* `--repo-url`: This tells repo where to clone the full repo project itself. 50* `--repo-url`: This tells repo where to clone the full repo project itself.
51 It defaults to the official project (`REPO_URL` in the launcher script). 51 It defaults to the official project (`REPO_URL` in the launcher script).
52* `--repo-branch`: This tells repo which branch to use for the full project. 52* `--repo-rev`: This tells repo which branch to use for the full project.
53 It defaults to the `stable` branch (`REPO_REV` in the launcher script). 53 It defaults to the `stable` branch (`REPO_REV` in the launcher script).
54 54
55Whenever `repo sync` is run, repo will check to see if an update is available. 55Whenever `repo sync` is run, repo will check to see if an update is available.
56It fetches the latest repo-branch from the repo-url. 56It fetches the latest repo-rev from the repo-url.
57Then it verifies that the latest commit in the branch has a valid signed tag 57Then it verifies that the latest commit in the branch has a valid signed tag
58using `git tag -v` (which uses gpg). 58using `git tag -v` (which uses gpg).
59If the tag is valid, then repo will update its internal checkout to it. 59If the tag is valid, then repo will update its internal checkout to it.
@@ -91,7 +91,7 @@ When you want to create a new release, you'll need to select a good version and
91create a signed tag using a key registered in repo itself. 91create a signed tag using a key registered in repo itself.
92Typically we just tag the latest version of the `master` branch. 92Typically we just tag the latest version of the `master` branch.
93The tag could be pushed now, but it won't be used by clients normally (since the 93The tag could be pushed now, but it won't be used by clients normally (since the
94default `repo-branch` setting is `stable`). 94default `repo-rev` setting is `stable`).
95This would allow some early testing on systems who explicitly select `master`. 95This would allow some early testing on systems who explicitly select `master`.
96 96
97### Creating a signed tag 97### Creating a signed tag