diff options
author | David Pursehouse <david.pursehouse@sonymobile.com> | 2016-04-13 17:55:34 +0900 |
---|---|---|
committer | David Pursehouse <david.pursehouse@sonymobile.com> | 2016-04-13 17:55:36 +0900 |
commit | e868841782314e431134c24c350f5a353306fa7d (patch) | |
tree | 5891a48fdf4c390778dd688362560c7001c46c45 | |
parent | bdb866ea7630b1aecad0ddc7d72939e67ff39816 (diff) | |
download | git-repo-e868841782314e431134c24c350f5a353306fa7d.tar.gz |
Improve documentation of manifest server RPC methods
Mention that the RPC endpoints are used when running repo
sync with the --smart-sync and --smart-tag options
Change-Id: I4b0b82e8b714fe923a5b325a6135f0128bf636ff
-rw-r--r-- | docs/manifest-format.txt | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/docs/manifest-format.txt b/docs/manifest-format.txt index 140a782f..8fd9137c 100644 --- a/docs/manifest-format.txt +++ b/docs/manifest-format.txt | |||
@@ -175,7 +175,8 @@ The manifest server should implement the following RPC methods: | |||
175 | GetApprovedManifest(branch, target) | 175 | GetApprovedManifest(branch, target) |
176 | 176 | ||
177 | Return a manifest in which each project is pegged to a known good revision | 177 | Return a manifest in which each project is pegged to a known good revision |
178 | for the current branch and target. | 178 | for the current branch and target. This is used by repo sync when the |
179 | --smart-sync option is given. | ||
179 | 180 | ||
180 | The target to use is defined by environment variables TARGET_PRODUCT | 181 | The target to use is defined by environment variables TARGET_PRODUCT |
181 | and TARGET_BUILD_VARIANT. These variables are used to create a string | 182 | and TARGET_BUILD_VARIANT. These variables are used to create a string |
@@ -187,7 +188,8 @@ should choose a reasonable default target. | |||
187 | GetManifest(tag) | 188 | GetManifest(tag) |
188 | 189 | ||
189 | Return a manifest in which each project is pegged to the revision at | 190 | Return a manifest in which each project is pegged to the revision at |
190 | the specified tag. | 191 | the specified tag. This is used by repo sync when the --smart-tag option |
192 | is given. | ||
191 | 193 | ||
192 | 194 | ||
193 | Element project | 195 | Element project |