blob: 0c957dd542b1476b34f3ad37736b06df38ea2fa8 [file] [log] [blame]
Shawn O. Pearce3e548192008-11-04 11:19:36 -08001repo Manifest Format
2====================
3
4A repo manifest describes the structure of a repo client; that is
5the directories that are visible and where they should be obtained
6from with git.
7
8The basic structure of a manifest is a bare Git repository holding
9a single 'default.xml' XML file in the top level directory.
10
11Manifests are inherently version controlled, since they are kept
12within a Git repository. Updates to manifests are automatically
13obtained by clients during `repo sync`.
14
15
16XML File Format
17---------------
18
19A manifest XML file (e.g. 'default.xml') roughly conforms to the
20following DTD:
21
Shawn O. Pearce43c3d9e2009-03-04 14:26:50 -080022 <!DOCTYPE manifest [
Doug Anderson2b8db3c2010-11-01 15:08:06 -070023 <!ELEMENT manifest (notice?,
24 remote*,
Shawn O. Pearce43c3d9e2009-03-04 14:26:50 -080025 default?,
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -070026 manifest-server?,
Shawn O. Pearce43c3d9e2009-03-04 14:26:50 -080027 remove-project*,
Doug Anderson37282b42011-03-04 11:54:18 -080028 project*,
Josh Triplett884a3872014-06-12 14:57:29 -070029 extend-project*,
Jiri tyrfddfa6f2017-01-09 23:47:52 +000030 repo-hooks?,
31 include*)>
Chirayu Desaid5a5b192013-11-21 19:15:30 +053032
Doug Anderson2b8db3c2010-11-01 15:08:06 -070033 <!ELEMENT notice (#PCDATA)>
Chirayu Desaid5a5b192013-11-21 19:15:30 +053034
Mike Frysinger04071c12016-12-28 16:07:16 -050035 <!ELEMENT remote EMPTY>
Shawn O. Pearce43c3d9e2009-03-04 14:26:50 -080036 <!ATTLIST remote name ID #REQUIRED>
Yestin Sunb292b982012-07-02 07:32:50 -070037 <!ATTLIST remote alias CDATA #IMPLIED>
Shawn O. Pearce43c3d9e2009-03-04 14:26:50 -080038 <!ATTLIST remote fetch CDATA #REQUIRED>
Steve Raed6480452016-08-10 15:00:00 -070039 <!ATTLIST remote pushurl CDATA #IMPLIED>
Shawn O. Pearce43c3d9e2009-03-04 14:26:50 -080040 <!ATTLIST remote review CDATA #IMPLIED>
Anthony King36ea2fb2014-05-06 11:54:01 +010041 <!ATTLIST remote revision CDATA #IMPLIED>
Chirayu Desaid5a5b192013-11-21 19:15:30 +053042
Mike Frysinger04071c12016-12-28 16:07:16 -050043 <!ELEMENT default EMPTY>
Bryan Jacobsf609f912013-05-06 13:36:24 -040044 <!ATTLIST default remote IDREF #IMPLIED>
45 <!ATTLIST default revision CDATA #IMPLIED>
46 <!ATTLIST default dest-branch CDATA #IMPLIED>
Nasser Grainawida403412018-05-04 12:53:29 -060047 <!ATTLIST default upstream CDATA #IMPLIED>
Bryan Jacobsf609f912013-05-06 13:36:24 -040048 <!ATTLIST default sync-j CDATA #IMPLIED>
49 <!ATTLIST default sync-c CDATA #IMPLIED>
50 <!ATTLIST default sync-s CDATA #IMPLIED>
YOUNG HO CHAa32c92c2018-02-14 16:57:31 +090051 <!ATTLIST default sync-tags CDATA #IMPLIED>
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -070052
Mike Frysinger04071c12016-12-28 16:07:16 -050053 <!ELEMENT manifest-server EMPTY>
Kenny Ho827e5472015-10-22 20:59:42 +000054 <!ATTLIST manifest-server url CDATA #REQUIRED>
Chirayu Desaid5a5b192013-11-21 19:15:30 +053055
Warren Turkal53d6a7b2013-12-10 15:30:03 -080056 <!ELEMENT project (annotation*,
Ruslan Bilovol54527e72015-09-08 13:11:23 +030057 project*,
Kenny Ho827e5472015-10-22 20:59:42 +000058 copyfile*,
59 linkfile*)>
Bryan Jacobsf609f912013-05-06 13:36:24 -040060 <!ATTLIST project name CDATA #REQUIRED>
61 <!ATTLIST project path CDATA #IMPLIED>
62 <!ATTLIST project remote IDREF #IMPLIED>
63 <!ATTLIST project revision CDATA #IMPLIED>
64 <!ATTLIST project dest-branch CDATA #IMPLIED>
65 <!ATTLIST project groups CDATA #IMPLIED>
66 <!ATTLIST project sync-c CDATA #IMPLIED>
67 <!ATTLIST project sync-s CDATA #IMPLIED>
YOUNG HO CHAa32c92c2018-02-14 16:57:31 +090068 <!ATTLIST default sync-tags CDATA #IMPLIED>
David Pursehouse4e465202012-11-27 22:20:10 +090069 <!ATTLIST project upstream CDATA #IMPLIED>
David Pursehouseede7f122012-11-27 22:25:30 +090070 <!ATTLIST project clone-depth CDATA #IMPLIED>
Scott Fandb83b1b2013-02-28 09:34:14 +080071 <!ATTLIST project force-path CDATA #IMPLIED>
James W. Mills24c13082012-04-12 15:04:13 -050072
Mike Frysinger04071c12016-12-28 16:07:16 -050073 <!ELEMENT annotation EMPTY>
James W. Mills24c13082012-04-12 15:04:13 -050074 <!ATTLIST annotation name CDATA #REQUIRED>
75 <!ATTLIST annotation value CDATA #REQUIRED>
76 <!ATTLIST annotation keep CDATA "true">
Chirayu Desaid5a5b192013-11-21 19:15:30 +053077
Mike Frysinger04071c12016-12-28 16:07:16 -050078 <!ELEMENT copyfile EMPTY>
Kenny Ho827e5472015-10-22 20:59:42 +000079 <!ATTLIST copyfile src CDATA #REQUIRED>
80 <!ATTLIST copyfile dest CDATA #REQUIRED>
Ruslan Bilovol54527e72015-09-08 13:11:23 +030081
Mike Frysinger04071c12016-12-28 16:07:16 -050082 <!ELEMENT linkfile EMPTY>
Kenny Ho827e5472015-10-22 20:59:42 +000083 <!ATTLIST linkfile src CDATA #REQUIRED>
84 <!ATTLIST linkfile dest CDATA #REQUIRED>
Ruslan Bilovol54527e72015-09-08 13:11:23 +030085
Mike Frysinger04071c12016-12-28 16:07:16 -050086 <!ELEMENT extend-project EMPTY>
Josh Triplett884a3872014-06-12 14:57:29 -070087 <!ATTLIST extend-project name CDATA #REQUIRED>
88 <!ATTLIST extend-project path CDATA #IMPLIED>
89 <!ATTLIST extend-project groups CDATA #IMPLIED>
Luis Hector Chavez7d525852018-03-15 09:54:08 -070090 <!ATTLIST extend-project revision CDATA #IMPLIED>
Josh Triplett884a3872014-06-12 14:57:29 -070091
Mike Frysinger04071c12016-12-28 16:07:16 -050092 <!ELEMENT remove-project EMPTY>
Shawn O. Pearce43c3d9e2009-03-04 14:26:50 -080093 <!ATTLIST remove-project name CDATA #REQUIRED>
Doug Anderson37282b42011-03-04 11:54:18 -080094
Mike Frysinger04071c12016-12-28 16:07:16 -050095 <!ELEMENT repo-hooks EMPTY>
Doug Anderson37282b42011-03-04 11:54:18 -080096 <!ATTLIST repo-hooks in-project CDATA #REQUIRED>
97 <!ATTLIST repo-hooks enabled-list CDATA #REQUIRED>
Brian Harring26448742011-04-28 05:04:41 -070098
Mike Frysinger04071c12016-12-28 16:07:16 -050099 <!ELEMENT include EMPTY>
Brian Harring26448742011-04-28 05:04:41 -0700100 <!ATTLIST include name CDATA #REQUIRED>
Shawn O. Pearce43c3d9e2009-03-04 14:26:50 -0800101 ]>
Shawn O. Pearce3e548192008-11-04 11:19:36 -0800102
103A description of the elements and their attributes follows.
104
105
106Element manifest
107----------------
108
109The root element of the file.
110
111
112Element remote
113--------------
114
115One or more remote elements may be specified. Each remote element
116specifies a Git URL shared by one or more projects and (optionally)
117the Gerrit review server those projects upload changes through.
118
119Attribute `name`: A short name unique to this manifest file. The
120name specified here is used as the remote name in each project's
121.git/config, and is therefore automatically available to commands
122like `git fetch`, `git remote`, `git pull` and `git push`.
123
Yestin Sunb292b982012-07-02 07:32:50 -0700124Attribute `alias`: The alias, if specified, is used to override
125`name` to be set as the remote name in each project's .git/config.
126Its value can be duplicated while attribute `name` has to be unique
127in the manifest file. This helps each project to be able to have
128same remote name which actually points to different remote url.
129
Shawn O. Pearce3e548192008-11-04 11:19:36 -0800130Attribute `fetch`: The Git URL prefix for all projects which use
131this remote. Each project's name is appended to this prefix to
132form the actual URL used to clone the project.
133
Steve Raed6480452016-08-10 15:00:00 -0700134Attribute `pushurl`: The Git "push" URL prefix for all projects
135which use this remote. Each project's name is appended to this
136prefix to form the actual URL used to "git push" the project.
137This attribute is optional; if not specified then "git push"
138will use the same URL as the `fetch` attribute.
139
Shawn O. Pearce3e548192008-11-04 11:19:36 -0800140Attribute `review`: Hostname of the Gerrit server where reviews
141are uploaded to by `repo upload`. This attribute is optional;
142if not specified then `repo upload` will not function.
143
Anthony King36ea2fb2014-05-06 11:54:01 +0100144Attribute `revision`: Name of a Git branch (e.g. `master` or
145`refs/heads/master`). Remotes with their own revision will override
146the default revision.
147
Shawn O. Pearce3e548192008-11-04 11:19:36 -0800148Element default
149---------------
150
151At most one default element may be specified. Its remote and
152revision attributes are used when a project element does not
153specify its own remote or revision attribute.
154
155Attribute `remote`: Name of a previously defined remote element.
156Project elements lacking a remote attribute of their own will use
157this remote.
158
159Attribute `revision`: Name of a Git branch (e.g. `master` or
160`refs/heads/master`). Project elements lacking their own
161revision attribute will use this revision.
162
Bryan Jacobsf609f912013-05-06 13:36:24 -0400163Attribute `dest-branch`: Name of a Git branch (e.g. `master`).
164Project elements not setting their own `dest-branch` will inherit
165this value. If this value is not set, projects will use `revision`
166by default instead.
167
Nasser Grainawida403412018-05-04 12:53:29 -0600168Attribute `upstream`: Name of the Git ref in which a sha1
169can be found. Used when syncing a revision locked manifest in
170-c mode to avoid having to sync the entire ref space. Project elements
171not setting their own `upstream` will inherit this value.
172
Mani Chandel7a91d512014-07-24 16:27:08 +0530173Attribute `sync-j`: Number of parallel jobs to use when synching.
David Pursehouse4e465202012-11-27 22:20:10 +0900174
Mani Chandel7a91d512014-07-24 16:27:08 +0530175Attribute `sync-c`: Set to true to only sync the given Git
David Pursehouse4e465202012-11-27 22:20:10 +0900176branch (specified in the `revision` attribute) rather than the
Mani Chandel7a91d512014-07-24 16:27:08 +0530177whole ref space. Project elements lacking a sync-c element of
David Pursehouse4e465202012-11-27 22:20:10 +0900178their own will use this value.
179
Mani Chandel7a91d512014-07-24 16:27:08 +0530180Attribute `sync-s`: Set to true to also sync sub-projects.
David Pursehouse4e465202012-11-27 22:20:10 +0900181
YOUNG HO CHAa32c92c2018-02-14 16:57:31 +0900182Attribute `sync-tags`: Set to false to only sync the given Git
183branch (specified in the `revision` attribute) rather than
184the other ref tags.
185
Shawn O. Pearce3e548192008-11-04 11:19:36 -0800186
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700187Element manifest-server
188-----------------------
189
190At most one manifest-server may be specified. The url attribute
191is used to specify the URL of a manifest server, which is an
David Pursehouse9a27d012012-08-21 14:23:49 +0900192XML RPC service.
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700193
David Pursehouse9a27d012012-08-21 14:23:49 +0900194The manifest server should implement the following RPC methods:
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700195
196 GetApprovedManifest(branch, target)
197
David Pursehouse9a27d012012-08-21 14:23:49 +0900198Return a manifest in which each project is pegged to a known good revision
David Pursehousee8688412016-04-13 17:55:34 +0900199for the current branch and target. This is used by repo sync when the
200--smart-sync option is given.
David Pursehouse9a27d012012-08-21 14:23:49 +0900201
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700202The target to use is defined by environment variables TARGET_PRODUCT
203and TARGET_BUILD_VARIANT. These variables are used to create a string
204of the form $TARGET_PRODUCT-$TARGET_BUILD_VARIANT, e.g. passion-userdebug.
205If one of those variables or both are not present, the program will call
David Pursehousedaa851f2012-08-21 13:52:18 +0900206GetApprovedManifest without the target parameter and the manifest server
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700207should choose a reasonable default target.
208
David Pursehouse9a27d012012-08-21 14:23:49 +0900209 GetManifest(tag)
210
211Return a manifest in which each project is pegged to the revision at
David Pursehousee8688412016-04-13 17:55:34 +0900212the specified tag. This is used by repo sync when the --smart-tag option
213is given.
David Pursehouse9a27d012012-08-21 14:23:49 +0900214
Nico Sallembiena1bfd2c2010-04-06 10:40:01 -0700215
Shawn O. Pearce3e548192008-11-04 11:19:36 -0800216Element project
217---------------
218
219One or more project elements may be specified. Each element
220describes a single Git repository to be cloned into the repo
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800221client workspace. You may specify Git-submodules by creating a
222nested project. Git-submodules will be automatically
223recognized and inherit their parent's attributes, but those
224may be overridden by an explicitly specified project element.
Shawn O. Pearce3e548192008-11-04 11:19:36 -0800225
226Attribute `name`: A unique name for this project. The project's
227name is appended onto its remote's fetch URL to generate the actual
228URL to configure the Git remote with. The URL gets formed as:
229
230 ${remote_fetch}/${project_name}.git
231
232where ${remote_fetch} is the remote's fetch attribute and
233${project_name} is the project's name attribute. The suffix ".git"
David Pursehousedaa851f2012-08-21 13:52:18 +0900234is always appended as repo assumes the upstream is a forest of
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800235bare Git repositories. If the project has a parent element, its
236name will be prefixed by the parent's.
Shawn O. Pearce3e548192008-11-04 11:19:36 -0800237
238The project name must match the name Gerrit knows, if Gerrit is
239being used for code reviews.
240
241Attribute `path`: An optional path relative to the top directory
242of the repo client where the Git working directory for this project
243should be placed. If not supplied the project name is used.
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800244If the project has a parent element, its path will be prefixed
245by the parent's.
Shawn O. Pearce3e548192008-11-04 11:19:36 -0800246
247Attribute `remote`: Name of a previously defined remote element.
248If not supplied the remote given by the default element is used.
249
250Attribute `revision`: Name of the Git branch the manifest wants
251to track for this project. Names can be relative to refs/heads
252(e.g. just "master") or absolute (e.g. "refs/heads/master").
253Tags and/or explicit SHA-1s should work in theory, but have not
254been extensively tested. If not supplied the revision given by
Anthony King36ea2fb2014-05-06 11:54:01 +0100255the remote element is used if applicable, else the default
256element is used.
Shawn O. Pearce3e548192008-11-04 11:19:36 -0800257
Bryan Jacobsf609f912013-05-06 13:36:24 -0400258Attribute `dest-branch`: Name of a Git branch (e.g. `master`).
259When using `repo upload`, changes will be submitted for code
260review on this branch. If unspecified both here and in the
261default element, `revision` is used instead.
262
Colin Cross5acde752012-03-28 20:15:45 -0700263Attribute `groups`: List of groups to which this project belongs,
Conley Owens971de8e2012-04-16 10:36:08 -0700264whitespace or comma separated. All projects belong to the group
Conley Owensbb1b5f52012-08-13 13:11:18 -0700265"all", and each project automatically belongs to a group of
266its name:`name` and path:`path`. E.g. for
Brian Harring7da13142012-06-15 02:24:20 -0700267<project name="monkeys" path="barrel-of"/>, that project
268definition is implicitly in the following manifest groups:
Conley Owensbb1b5f52012-08-13 13:11:18 -0700269default, name:monkeys, and path:barrel-of. If you place a project in the
270group "notdefault", it will not be automatically downloaded by repo.
Che-Liang Chioub2bd91c2012-01-11 11:28:42 +0800271If the project has a parent element, the `name` and `path` here
272are the prefixed ones.
Colin Cross5acde752012-03-28 20:15:45 -0700273
Mani Chandel7a91d512014-07-24 16:27:08 +0530274Attribute `sync-c`: Set to true to only sync the given Git
David Pursehouse4e465202012-11-27 22:20:10 +0900275branch (specified in the `revision` attribute) rather than the
276whole ref space.
277
Mani Chandel7a91d512014-07-24 16:27:08 +0530278Attribute `sync-s`: Set to true to also sync sub-projects.
David Pursehouse4e465202012-11-27 22:20:10 +0900279
Nasser Grainawi909d58b2014-09-19 12:13:04 -0600280Attribute `upstream`: Name of the Git ref in which a sha1
David Pursehouse4e465202012-11-27 22:20:10 +0900281can be found. Used when syncing a revision locked manifest in
282-c mode to avoid having to sync the entire ref space.
283
David Pursehouseede7f122012-11-27 22:25:30 +0900284Attribute `clone-depth`: Set the depth to use when fetching this
285project. If specified, this value will override any value given
286to repo init with the --depth option on the command line.
287
Scott Fandb83b1b2013-02-28 09:34:14 +0800288Attribute `force-path`: Set to true to force this project to create the
289local mirror repository according to its `path` attribute (if supplied)
290rather than the `name` attribute. This attribute only applies to the
291local mirrors syncing, it will be ignored when syncing the projects in a
292client working directory.
293
Josh Triplett884a3872014-06-12 14:57:29 -0700294Element extend-project
295----------------------
296
297Modify the attributes of the named project.
298
299This element is mostly useful in a local manifest file, to modify the
300attributes of an existing project without completely replacing the
301existing project definition. This makes the local manifest more robust
302against changes to the original manifest.
303
304Attribute `path`: If specified, limit the change to projects checked out
305at the specified path, rather than all projects with the given name.
306
307Attribute `groups`: List of additional groups to which this project
308belongs. Same syntax as the corresponding element of `project`.
309
Luis Hector Chavez7d525852018-03-15 09:54:08 -0700310Attribute `revision`: If specified, overrides the revision of the original
311project. Same syntax as the corresponding element of `project`.
312
James W. Mills24c13082012-04-12 15:04:13 -0500313Element annotation
314------------------
315
316Zero or more annotation elements may be specified as children of a
317project element. Each element describes a name-value pair that will be
318exported into each project's environment during a 'forall' command,
319prefixed with REPO__. In addition, there is an optional attribute
320"keep" which accepts the case insensitive values "true" (default) or
321"false". This attribute determines whether or not the annotation will
322be kept when exported with the manifest subcommand.
323
Ruslan Bilovol54527e72015-09-08 13:11:23 +0300324Element copyfile
325----------------
326
327Zero or more copyfile elements may be specified as children of a
328project element. Each element describes a src-dest pair of files;
329the "src" file will be copied to the "dest" place during 'repo sync'
330command.
331"src" is project relative, "dest" is relative to the top of the tree.
332
333Element linkfile
334----------------
335
336It's just like copyfile and runs at the same time as copyfile but
337instead of copying it creates a symlink.
338
Shawn O. Pearce03eaf072008-11-20 11:42:22 -0800339Element remove-project
340----------------------
341
342Deletes the named project from the internal manifest table, possibly
343allowing a subsequent project element in the same manifest file to
344replace the project with a different source.
345
David Pursehouseb1525bf2012-11-14 08:51:38 +0900346This element is mostly useful in a local manifest file, where
Shawn O. Pearce03eaf072008-11-20 11:42:22 -0800347the user can remove a project, and possibly replace it with their
348own definition.
349
Brian Harring26448742011-04-28 05:04:41 -0700350Element include
351---------------
352
353This element provides the capability of including another manifest
354file into the originating manifest. Normal rules apply for the
David Pursehouse9f3406e2012-11-14 08:52:25 +0900355target manifest to include - it must be a usable manifest on its own.
Brian Harring26448742011-04-28 05:04:41 -0700356
David Pursehouse9f3406e2012-11-14 08:52:25 +0900357Attribute `name`: the manifest to include, specified relative to
358the manifest repository's root.
Brian Harring26448742011-04-28 05:04:41 -0700359
Shawn O. Pearce03eaf072008-11-20 11:42:22 -0800360
David Pursehouse2d5a0df2012-11-13 02:50:36 +0900361Local Manifests
362===============
Shawn O. Pearce70cd4ab2008-11-06 08:48:44 -0800363
David Pursehouse2d5a0df2012-11-13 02:50:36 +0900364Additional remotes and projects may be added through local manifest
365files stored in `$TOP_DIR/.repo/local_manifests/*.xml`.
Shawn O. Pearce70cd4ab2008-11-06 08:48:44 -0800366
367For example:
368
David Pursehouse2d5a0df2012-11-13 02:50:36 +0900369 $ ls .repo/local_manifests
370 local_manifest.xml
371 another_local_manifest.xml
372
373 $ cat .repo/local_manifests/local_manifest.xml
Shawn O. Pearce43c3d9e2009-03-04 14:26:50 -0800374 <?xml version="1.0" encoding="UTF-8"?>
375 <manifest>
376 <project path="manifest"
377 name="tools/manifest" />
378 <project path="platform-manifest"
379 name="platform/manifest" />
380 </manifest>
Shawn O. Pearce70cd4ab2008-11-06 08:48:44 -0800381
David Pursehouse2d5a0df2012-11-13 02:50:36 +0900382Users may add projects to the local manifest(s) prior to a `repo sync`
Shawn O. Pearce70cd4ab2008-11-06 08:48:44 -0800383invocation, instructing repo to automatically download and manage
384these extra projects.
David Pursehouse2d5a0df2012-11-13 02:50:36 +0900385
David Pursehouse52f1e5d2012-11-14 04:53:24 +0900386Manifest files stored in `$TOP_DIR/.repo/local_manifests/*.xml` will
387be loaded in alphabetical order.
388
David Pursehouse2d5a0df2012-11-13 02:50:36 +0900389Additional remotes and projects may also be added through a local
David Pursehouse5566ae52012-11-13 03:04:18 +0900390manifest, stored in `$TOP_DIR/.repo/local_manifest.xml`. This method
391is deprecated in favor of using multiple manifest files as mentioned
392above.
David Pursehouse52f1e5d2012-11-14 04:53:24 +0900393
394If `$TOP_DIR/.repo/local_manifest.xml` exists, it will be loaded before
395any manifest files stored in `$TOP_DIR/.repo/local_manifests/*.xml`.