Shawn O. Pearce | 3e54819 | 2008-11-04 11:19:36 -0800 | [diff] [blame] | 1 | repo Manifest Format |
| 2 | ==================== |
| 3 | |
| 4 | A repo manifest describes the structure of a repo client; that is |
| 5 | the directories that are visible and where they should be obtained |
| 6 | from with git. |
| 7 | |
| 8 | The basic structure of a manifest is a bare Git repository holding |
| 9 | a single 'default.xml' XML file in the top level directory. |
| 10 | |
| 11 | Manifests are inherently version controlled, since they are kept |
| 12 | within a Git repository. Updates to manifests are automatically |
| 13 | obtained by clients during `repo sync`. |
| 14 | |
| 15 | |
| 16 | XML File Format |
| 17 | --------------- |
| 18 | |
| 19 | A manifest XML file (e.g. 'default.xml') roughly conforms to the |
| 20 | following DTD: |
| 21 | |
Shawn O. Pearce | 43c3d9e | 2009-03-04 14:26:50 -0800 | [diff] [blame] | 22 | <!DOCTYPE manifest [ |
Doug Anderson | 2b8db3c | 2010-11-01 15:08:06 -0700 | [diff] [blame] | 23 | <!ELEMENT manifest (notice?, |
| 24 | remote*, |
Shawn O. Pearce | 43c3d9e | 2009-03-04 14:26:50 -0800 | [diff] [blame] | 25 | default?, |
Nico Sallembien | a1bfd2c | 2010-04-06 10:40:01 -0700 | [diff] [blame] | 26 | manifest-server?, |
Shawn O. Pearce | 43c3d9e | 2009-03-04 14:26:50 -0800 | [diff] [blame] | 27 | remove-project*, |
Doug Anderson | 37282b4 | 2011-03-04 11:54:18 -0800 | [diff] [blame] | 28 | project*, |
| 29 | repo-hooks?)> |
Chirayu Desai | d5a5b19 | 2013-11-21 19:15:30 +0530 | [diff] [blame] | 30 | |
Doug Anderson | 2b8db3c | 2010-11-01 15:08:06 -0700 | [diff] [blame] | 31 | <!ELEMENT notice (#PCDATA)> |
Chirayu Desai | d5a5b19 | 2013-11-21 19:15:30 +0530 | [diff] [blame] | 32 | |
Shawn O. Pearce | 43c3d9e | 2009-03-04 14:26:50 -0800 | [diff] [blame] | 33 | <!ELEMENT remote (EMPTY)> |
| 34 | <!ATTLIST remote name ID #REQUIRED> |
Yestin Sun | b292b98 | 2012-07-02 07:32:50 -0700 | [diff] [blame] | 35 | <!ATTLIST remote alias CDATA #IMPLIED> |
Shawn O. Pearce | 43c3d9e | 2009-03-04 14:26:50 -0800 | [diff] [blame] | 36 | <!ATTLIST remote fetch CDATA #REQUIRED> |
| 37 | <!ATTLIST remote review CDATA #IMPLIED> |
Anthony King | 36ea2fb | 2014-05-06 11:54:01 +0100 | [diff] [blame] | 38 | <!ATTLIST remote revision CDATA #IMPLIED> |
Chirayu Desai | d5a5b19 | 2013-11-21 19:15:30 +0530 | [diff] [blame] | 39 | |
Shawn O. Pearce | 43c3d9e | 2009-03-04 14:26:50 -0800 | [diff] [blame] | 40 | <!ELEMENT default (EMPTY)> |
Bryan Jacobs | f609f91 | 2013-05-06 13:36:24 -0400 | [diff] [blame] | 41 | <!ATTLIST default remote IDREF #IMPLIED> |
| 42 | <!ATTLIST default revision CDATA #IMPLIED> |
| 43 | <!ATTLIST default dest-branch CDATA #IMPLIED> |
| 44 | <!ATTLIST default sync-j CDATA #IMPLIED> |
| 45 | <!ATTLIST default sync-c CDATA #IMPLIED> |
| 46 | <!ATTLIST default sync-s CDATA #IMPLIED> |
Nico Sallembien | a1bfd2c | 2010-04-06 10:40:01 -0700 | [diff] [blame] | 47 | |
| 48 | <!ELEMENT manifest-server (EMPTY)> |
| 49 | <!ATTLIST url CDATA #REQUIRED> |
Chirayu Desai | d5a5b19 | 2013-11-21 19:15:30 +0530 | [diff] [blame] | 50 | |
Warren Turkal | 53d6a7b | 2013-12-10 15:30:03 -0800 | [diff] [blame] | 51 | <!ELEMENT project (annotation*, |
Che-Liang Chiou | b2bd91c | 2012-01-11 11:28:42 +0800 | [diff] [blame] | 52 | project*)> |
Bryan Jacobs | f609f91 | 2013-05-06 13:36:24 -0400 | [diff] [blame] | 53 | <!ATTLIST project name CDATA #REQUIRED> |
| 54 | <!ATTLIST project path CDATA #IMPLIED> |
| 55 | <!ATTLIST project remote IDREF #IMPLIED> |
| 56 | <!ATTLIST project revision CDATA #IMPLIED> |
| 57 | <!ATTLIST project dest-branch CDATA #IMPLIED> |
| 58 | <!ATTLIST project groups CDATA #IMPLIED> |
| 59 | <!ATTLIST project sync-c CDATA #IMPLIED> |
| 60 | <!ATTLIST project sync-s CDATA #IMPLIED> |
David Pursehouse | 4e46520 | 2012-11-27 22:20:10 +0900 | [diff] [blame] | 61 | <!ATTLIST project upstream CDATA #IMPLIED> |
David Pursehouse | ede7f12 | 2012-11-27 22:25:30 +0900 | [diff] [blame] | 62 | <!ATTLIST project clone-depth CDATA #IMPLIED> |
Scott Fan | db83b1b | 2013-02-28 09:34:14 +0800 | [diff] [blame] | 63 | <!ATTLIST project force-path CDATA #IMPLIED> |
James W. Mills | 24c1308 | 2012-04-12 15:04:13 -0500 | [diff] [blame] | 64 | |
| 65 | <!ELEMENT annotation (EMPTY)> |
| 66 | <!ATTLIST annotation name CDATA #REQUIRED> |
| 67 | <!ATTLIST annotation value CDATA #REQUIRED> |
| 68 | <!ATTLIST annotation keep CDATA "true"> |
Chirayu Desai | d5a5b19 | 2013-11-21 19:15:30 +0530 | [diff] [blame] | 69 | |
Shawn O. Pearce | 43c3d9e | 2009-03-04 14:26:50 -0800 | [diff] [blame] | 70 | <!ELEMENT remove-project (EMPTY)> |
| 71 | <!ATTLIST remove-project name CDATA #REQUIRED> |
Doug Anderson | 37282b4 | 2011-03-04 11:54:18 -0800 | [diff] [blame] | 72 | |
| 73 | <!ELEMENT repo-hooks (EMPTY)> |
| 74 | <!ATTLIST repo-hooks in-project CDATA #REQUIRED> |
| 75 | <!ATTLIST repo-hooks enabled-list CDATA #REQUIRED> |
Brian Harring | 2644874 | 2011-04-28 05:04:41 -0700 | [diff] [blame] | 76 | |
| 77 | <!ELEMENT include (EMPTY)> |
| 78 | <!ATTLIST include name CDATA #REQUIRED> |
Shawn O. Pearce | 43c3d9e | 2009-03-04 14:26:50 -0800 | [diff] [blame] | 79 | ]> |
Shawn O. Pearce | 3e54819 | 2008-11-04 11:19:36 -0800 | [diff] [blame] | 80 | |
| 81 | A description of the elements and their attributes follows. |
| 82 | |
| 83 | |
| 84 | Element manifest |
| 85 | ---------------- |
| 86 | |
| 87 | The root element of the file. |
| 88 | |
| 89 | |
| 90 | Element remote |
| 91 | -------------- |
| 92 | |
| 93 | One or more remote elements may be specified. Each remote element |
| 94 | specifies a Git URL shared by one or more projects and (optionally) |
| 95 | the Gerrit review server those projects upload changes through. |
| 96 | |
| 97 | Attribute `name`: A short name unique to this manifest file. The |
| 98 | name specified here is used as the remote name in each project's |
| 99 | .git/config, and is therefore automatically available to commands |
| 100 | like `git fetch`, `git remote`, `git pull` and `git push`. |
| 101 | |
Yestin Sun | b292b98 | 2012-07-02 07:32:50 -0700 | [diff] [blame] | 102 | Attribute `alias`: The alias, if specified, is used to override |
| 103 | `name` to be set as the remote name in each project's .git/config. |
| 104 | Its value can be duplicated while attribute `name` has to be unique |
| 105 | in the manifest file. This helps each project to be able to have |
| 106 | same remote name which actually points to different remote url. |
| 107 | |
Shawn O. Pearce | 3e54819 | 2008-11-04 11:19:36 -0800 | [diff] [blame] | 108 | Attribute `fetch`: The Git URL prefix for all projects which use |
| 109 | this remote. Each project's name is appended to this prefix to |
| 110 | form the actual URL used to clone the project. |
| 111 | |
| 112 | Attribute `review`: Hostname of the Gerrit server where reviews |
| 113 | are uploaded to by `repo upload`. This attribute is optional; |
| 114 | if not specified then `repo upload` will not function. |
| 115 | |
Anthony King | 36ea2fb | 2014-05-06 11:54:01 +0100 | [diff] [blame] | 116 | Attribute `revision`: Name of a Git branch (e.g. `master` or |
| 117 | `refs/heads/master`). Remotes with their own revision will override |
| 118 | the default revision. |
| 119 | |
Shawn O. Pearce | 3e54819 | 2008-11-04 11:19:36 -0800 | [diff] [blame] | 120 | Element default |
| 121 | --------------- |
| 122 | |
| 123 | At most one default element may be specified. Its remote and |
| 124 | revision attributes are used when a project element does not |
| 125 | specify its own remote or revision attribute. |
| 126 | |
| 127 | Attribute `remote`: Name of a previously defined remote element. |
| 128 | Project elements lacking a remote attribute of their own will use |
| 129 | this remote. |
| 130 | |
| 131 | Attribute `revision`: Name of a Git branch (e.g. `master` or |
| 132 | `refs/heads/master`). Project elements lacking their own |
| 133 | revision attribute will use this revision. |
| 134 | |
Bryan Jacobs | f609f91 | 2013-05-06 13:36:24 -0400 | [diff] [blame] | 135 | Attribute `dest-branch`: Name of a Git branch (e.g. `master`). |
| 136 | Project elements not setting their own `dest-branch` will inherit |
| 137 | this value. If this value is not set, projects will use `revision` |
| 138 | by default instead. |
| 139 | |
David Pursehouse | 4e46520 | 2012-11-27 22:20:10 +0900 | [diff] [blame] | 140 | Attribute `sync_j`: Number of parallel jobs to use when synching. |
| 141 | |
| 142 | Attribute `sync_c`: Set to true to only sync the given Git |
| 143 | branch (specified in the `revision` attribute) rather than the |
| 144 | whole ref space. Project elements lacking a sync_c element of |
| 145 | their own will use this value. |
| 146 | |
| 147 | Attribute `sync_s`: Set to true to also sync sub-projects. |
| 148 | |
Shawn O. Pearce | 3e54819 | 2008-11-04 11:19:36 -0800 | [diff] [blame] | 149 | |
Nico Sallembien | a1bfd2c | 2010-04-06 10:40:01 -0700 | [diff] [blame] | 150 | Element manifest-server |
| 151 | ----------------------- |
| 152 | |
| 153 | At most one manifest-server may be specified. The url attribute |
| 154 | is used to specify the URL of a manifest server, which is an |
David Pursehouse | 9a27d01 | 2012-08-21 14:23:49 +0900 | [diff] [blame] | 155 | XML RPC service. |
Nico Sallembien | a1bfd2c | 2010-04-06 10:40:01 -0700 | [diff] [blame] | 156 | |
David Pursehouse | 9a27d01 | 2012-08-21 14:23:49 +0900 | [diff] [blame] | 157 | The manifest server should implement the following RPC methods: |
Nico Sallembien | a1bfd2c | 2010-04-06 10:40:01 -0700 | [diff] [blame] | 158 | |
| 159 | GetApprovedManifest(branch, target) |
| 160 | |
David Pursehouse | 9a27d01 | 2012-08-21 14:23:49 +0900 | [diff] [blame] | 161 | Return a manifest in which each project is pegged to a known good revision |
| 162 | for the current branch and target. |
| 163 | |
Nico Sallembien | a1bfd2c | 2010-04-06 10:40:01 -0700 | [diff] [blame] | 164 | The target to use is defined by environment variables TARGET_PRODUCT |
| 165 | and TARGET_BUILD_VARIANT. These variables are used to create a string |
| 166 | of the form $TARGET_PRODUCT-$TARGET_BUILD_VARIANT, e.g. passion-userdebug. |
| 167 | If one of those variables or both are not present, the program will call |
David Pursehouse | daa851f | 2012-08-21 13:52:18 +0900 | [diff] [blame] | 168 | GetApprovedManifest without the target parameter and the manifest server |
Nico Sallembien | a1bfd2c | 2010-04-06 10:40:01 -0700 | [diff] [blame] | 169 | should choose a reasonable default target. |
| 170 | |
David Pursehouse | 9a27d01 | 2012-08-21 14:23:49 +0900 | [diff] [blame] | 171 | GetManifest(tag) |
| 172 | |
| 173 | Return a manifest in which each project is pegged to the revision at |
| 174 | the specified tag. |
| 175 | |
Nico Sallembien | a1bfd2c | 2010-04-06 10:40:01 -0700 | [diff] [blame] | 176 | |
Shawn O. Pearce | 3e54819 | 2008-11-04 11:19:36 -0800 | [diff] [blame] | 177 | Element project |
| 178 | --------------- |
| 179 | |
| 180 | One or more project elements may be specified. Each element |
| 181 | describes a single Git repository to be cloned into the repo |
Che-Liang Chiou | b2bd91c | 2012-01-11 11:28:42 +0800 | [diff] [blame] | 182 | client workspace. You may specify Git-submodules by creating a |
| 183 | nested project. Git-submodules will be automatically |
| 184 | recognized and inherit their parent's attributes, but those |
| 185 | may be overridden by an explicitly specified project element. |
Shawn O. Pearce | 3e54819 | 2008-11-04 11:19:36 -0800 | [diff] [blame] | 186 | |
| 187 | Attribute `name`: A unique name for this project. The project's |
| 188 | name is appended onto its remote's fetch URL to generate the actual |
| 189 | URL to configure the Git remote with. The URL gets formed as: |
| 190 | |
| 191 | ${remote_fetch}/${project_name}.git |
| 192 | |
| 193 | where ${remote_fetch} is the remote's fetch attribute and |
| 194 | ${project_name} is the project's name attribute. The suffix ".git" |
David Pursehouse | daa851f | 2012-08-21 13:52:18 +0900 | [diff] [blame] | 195 | is always appended as repo assumes the upstream is a forest of |
Che-Liang Chiou | b2bd91c | 2012-01-11 11:28:42 +0800 | [diff] [blame] | 196 | bare Git repositories. If the project has a parent element, its |
| 197 | name will be prefixed by the parent's. |
Shawn O. Pearce | 3e54819 | 2008-11-04 11:19:36 -0800 | [diff] [blame] | 198 | |
| 199 | The project name must match the name Gerrit knows, if Gerrit is |
| 200 | being used for code reviews. |
| 201 | |
| 202 | Attribute `path`: An optional path relative to the top directory |
| 203 | of the repo client where the Git working directory for this project |
| 204 | should be placed. If not supplied the project name is used. |
Che-Liang Chiou | b2bd91c | 2012-01-11 11:28:42 +0800 | [diff] [blame] | 205 | If the project has a parent element, its path will be prefixed |
| 206 | by the parent's. |
Shawn O. Pearce | 3e54819 | 2008-11-04 11:19:36 -0800 | [diff] [blame] | 207 | |
| 208 | Attribute `remote`: Name of a previously defined remote element. |
| 209 | If not supplied the remote given by the default element is used. |
| 210 | |
| 211 | Attribute `revision`: Name of the Git branch the manifest wants |
| 212 | to track for this project. Names can be relative to refs/heads |
| 213 | (e.g. just "master") or absolute (e.g. "refs/heads/master"). |
| 214 | Tags and/or explicit SHA-1s should work in theory, but have not |
| 215 | been extensively tested. If not supplied the revision given by |
Anthony King | 36ea2fb | 2014-05-06 11:54:01 +0100 | [diff] [blame] | 216 | the remote element is used if applicable, else the default |
| 217 | element is used. |
Shawn O. Pearce | 3e54819 | 2008-11-04 11:19:36 -0800 | [diff] [blame] | 218 | |
Bryan Jacobs | f609f91 | 2013-05-06 13:36:24 -0400 | [diff] [blame] | 219 | Attribute `dest-branch`: Name of a Git branch (e.g. `master`). |
| 220 | When using `repo upload`, changes will be submitted for code |
| 221 | review on this branch. If unspecified both here and in the |
| 222 | default element, `revision` is used instead. |
| 223 | |
Colin Cross | 5acde75 | 2012-03-28 20:15:45 -0700 | [diff] [blame] | 224 | Attribute `groups`: List of groups to which this project belongs, |
Conley Owens | 971de8e | 2012-04-16 10:36:08 -0700 | [diff] [blame] | 225 | whitespace or comma separated. All projects belong to the group |
Conley Owens | bb1b5f5 | 2012-08-13 13:11:18 -0700 | [diff] [blame] | 226 | "all", and each project automatically belongs to a group of |
| 227 | its name:`name` and path:`path`. E.g. for |
Brian Harring | 7da1314 | 2012-06-15 02:24:20 -0700 | [diff] [blame] | 228 | <project name="monkeys" path="barrel-of"/>, that project |
| 229 | definition is implicitly in the following manifest groups: |
Conley Owens | bb1b5f5 | 2012-08-13 13:11:18 -0700 | [diff] [blame] | 230 | default, name:monkeys, and path:barrel-of. If you place a project in the |
| 231 | group "notdefault", it will not be automatically downloaded by repo. |
Che-Liang Chiou | b2bd91c | 2012-01-11 11:28:42 +0800 | [diff] [blame] | 232 | If the project has a parent element, the `name` and `path` here |
| 233 | are the prefixed ones. |
Colin Cross | 5acde75 | 2012-03-28 20:15:45 -0700 | [diff] [blame] | 234 | |
David Pursehouse | 4e46520 | 2012-11-27 22:20:10 +0900 | [diff] [blame] | 235 | Attribute `sync_c`: Set to true to only sync the given Git |
| 236 | branch (specified in the `revision` attribute) rather than the |
| 237 | whole ref space. |
| 238 | |
| 239 | Attribute `sync_s`: Set to true to also sync sub-projects. |
| 240 | |
| 241 | Attribute `upstream`: Name of the Git branch in which a sha1 |
| 242 | can be found. Used when syncing a revision locked manifest in |
| 243 | -c mode to avoid having to sync the entire ref space. |
| 244 | |
David Pursehouse | ede7f12 | 2012-11-27 22:25:30 +0900 | [diff] [blame] | 245 | Attribute `clone-depth`: Set the depth to use when fetching this |
| 246 | project. If specified, this value will override any value given |
| 247 | to repo init with the --depth option on the command line. |
| 248 | |
Scott Fan | db83b1b | 2013-02-28 09:34:14 +0800 | [diff] [blame] | 249 | Attribute `force-path`: Set to true to force this project to create the |
| 250 | local mirror repository according to its `path` attribute (if supplied) |
| 251 | rather than the `name` attribute. This attribute only applies to the |
| 252 | local mirrors syncing, it will be ignored when syncing the projects in a |
| 253 | client working directory. |
| 254 | |
James W. Mills | 24c1308 | 2012-04-12 15:04:13 -0500 | [diff] [blame] | 255 | Element annotation |
| 256 | ------------------ |
| 257 | |
| 258 | Zero or more annotation elements may be specified as children of a |
| 259 | project element. Each element describes a name-value pair that will be |
| 260 | exported into each project's environment during a 'forall' command, |
| 261 | prefixed with REPO__. In addition, there is an optional attribute |
| 262 | "keep" which accepts the case insensitive values "true" (default) or |
| 263 | "false". This attribute determines whether or not the annotation will |
| 264 | be kept when exported with the manifest subcommand. |
| 265 | |
Shawn O. Pearce | 03eaf07 | 2008-11-20 11:42:22 -0800 | [diff] [blame] | 266 | Element remove-project |
| 267 | ---------------------- |
| 268 | |
| 269 | Deletes the named project from the internal manifest table, possibly |
| 270 | allowing a subsequent project element in the same manifest file to |
| 271 | replace the project with a different source. |
| 272 | |
David Pursehouse | b1525bf | 2012-11-14 08:51:38 +0900 | [diff] [blame] | 273 | This element is mostly useful in a local manifest file, where |
Shawn O. Pearce | 03eaf07 | 2008-11-20 11:42:22 -0800 | [diff] [blame] | 274 | the user can remove a project, and possibly replace it with their |
| 275 | own definition. |
| 276 | |
Brian Harring | 2644874 | 2011-04-28 05:04:41 -0700 | [diff] [blame] | 277 | Element include |
| 278 | --------------- |
| 279 | |
| 280 | This element provides the capability of including another manifest |
| 281 | file into the originating manifest. Normal rules apply for the |
David Pursehouse | 9f3406e | 2012-11-14 08:52:25 +0900 | [diff] [blame] | 282 | target manifest to include - it must be a usable manifest on its own. |
Brian Harring | 2644874 | 2011-04-28 05:04:41 -0700 | [diff] [blame] | 283 | |
David Pursehouse | 9f3406e | 2012-11-14 08:52:25 +0900 | [diff] [blame] | 284 | Attribute `name`: the manifest to include, specified relative to |
| 285 | the manifest repository's root. |
Brian Harring | 2644874 | 2011-04-28 05:04:41 -0700 | [diff] [blame] | 286 | |
Shawn O. Pearce | 03eaf07 | 2008-11-20 11:42:22 -0800 | [diff] [blame] | 287 | |
David Pursehouse | 2d5a0df | 2012-11-13 02:50:36 +0900 | [diff] [blame] | 288 | Local Manifests |
| 289 | =============== |
Shawn O. Pearce | 70cd4ab | 2008-11-06 08:48:44 -0800 | [diff] [blame] | 290 | |
David Pursehouse | 2d5a0df | 2012-11-13 02:50:36 +0900 | [diff] [blame] | 291 | Additional remotes and projects may be added through local manifest |
| 292 | files stored in `$TOP_DIR/.repo/local_manifests/*.xml`. |
Shawn O. Pearce | 70cd4ab | 2008-11-06 08:48:44 -0800 | [diff] [blame] | 293 | |
| 294 | For example: |
| 295 | |
David Pursehouse | 2d5a0df | 2012-11-13 02:50:36 +0900 | [diff] [blame] | 296 | $ ls .repo/local_manifests |
| 297 | local_manifest.xml |
| 298 | another_local_manifest.xml |
| 299 | |
| 300 | $ cat .repo/local_manifests/local_manifest.xml |
Shawn O. Pearce | 43c3d9e | 2009-03-04 14:26:50 -0800 | [diff] [blame] | 301 | <?xml version="1.0" encoding="UTF-8"?> |
| 302 | <manifest> |
| 303 | <project path="manifest" |
| 304 | name="tools/manifest" /> |
| 305 | <project path="platform-manifest" |
| 306 | name="platform/manifest" /> |
| 307 | </manifest> |
Shawn O. Pearce | 70cd4ab | 2008-11-06 08:48:44 -0800 | [diff] [blame] | 308 | |
David Pursehouse | 2d5a0df | 2012-11-13 02:50:36 +0900 | [diff] [blame] | 309 | Users may add projects to the local manifest(s) prior to a `repo sync` |
Shawn O. Pearce | 70cd4ab | 2008-11-06 08:48:44 -0800 | [diff] [blame] | 310 | invocation, instructing repo to automatically download and manage |
| 311 | these extra projects. |
David Pursehouse | 2d5a0df | 2012-11-13 02:50:36 +0900 | [diff] [blame] | 312 | |
David Pursehouse | 52f1e5d | 2012-11-14 04:53:24 +0900 | [diff] [blame] | 313 | Manifest files stored in `$TOP_DIR/.repo/local_manifests/*.xml` will |
| 314 | be loaded in alphabetical order. |
| 315 | |
David Pursehouse | 2d5a0df | 2012-11-13 02:50:36 +0900 | [diff] [blame] | 316 | Additional remotes and projects may also be added through a local |
David Pursehouse | 5566ae5 | 2012-11-13 03:04:18 +0900 | [diff] [blame] | 317 | manifest, stored in `$TOP_DIR/.repo/local_manifest.xml`. This method |
| 318 | is deprecated in favor of using multiple manifest files as mentioned |
| 319 | above. |
David Pursehouse | 52f1e5d | 2012-11-14 04:53:24 +0900 | [diff] [blame] | 320 | |
| 321 | If `$TOP_DIR/.repo/local_manifest.xml` exists, it will be loaded before |
| 322 | any manifest files stored in `$TOP_DIR/.repo/local_manifests/*.xml`. |