2018-10-10 05:05:11 +00:00
|
|
|
# repo Manifest Format
|
2008-11-04 19:19:36 +00:00
|
|
|
|
|
|
|
A repo manifest describes the structure of a repo client; that is
|
|
|
|
the directories that are visible and where they should be obtained
|
|
|
|
from with git.
|
|
|
|
|
|
|
|
The basic structure of a manifest is a bare Git repository holding
|
2018-10-05 23:26:15 +00:00
|
|
|
a single `default.xml` XML file in the top level directory.
|
2008-11-04 19:19:36 +00:00
|
|
|
|
|
|
|
Manifests are inherently version controlled, since they are kept
|
|
|
|
within a Git repository. Updates to manifests are automatically
|
|
|
|
obtained by clients during `repo sync`.
|
|
|
|
|
2018-10-05 23:26:15 +00:00
|
|
|
[TOC]
|
|
|
|
|
2008-11-04 19:19:36 +00:00
|
|
|
|
2018-10-10 05:05:11 +00:00
|
|
|
## XML File Format
|
2008-11-04 19:19:36 +00:00
|
|
|
|
2018-10-05 23:26:15 +00:00
|
|
|
A manifest XML file (e.g. `default.xml`) roughly conforms to the
|
2008-11-04 19:19:36 +00:00
|
|
|
following DTD:
|
|
|
|
|
2018-10-05 23:26:15 +00:00
|
|
|
```xml
|
|
|
|
<!DOCTYPE manifest [
|
|
|
|
<!ELEMENT manifest (notice?,
|
|
|
|
remote*,
|
|
|
|
default?,
|
|
|
|
manifest-server?,
|
|
|
|
remove-project*,
|
|
|
|
project*,
|
|
|
|
extend-project*,
|
|
|
|
repo-hooks?,
|
|
|
|
include*)>
|
|
|
|
|
|
|
|
<!ELEMENT notice (#PCDATA)>
|
|
|
|
|
|
|
|
<!ELEMENT remote EMPTY>
|
|
|
|
<!ATTLIST remote name ID #REQUIRED>
|
|
|
|
<!ATTLIST remote alias CDATA #IMPLIED>
|
|
|
|
<!ATTLIST remote fetch CDATA #REQUIRED>
|
|
|
|
<!ATTLIST remote pushurl CDATA #IMPLIED>
|
|
|
|
<!ATTLIST remote review CDATA #IMPLIED>
|
|
|
|
<!ATTLIST remote revision CDATA #IMPLIED>
|
|
|
|
|
|
|
|
<!ELEMENT default EMPTY>
|
|
|
|
<!ATTLIST default remote IDREF #IMPLIED>
|
|
|
|
<!ATTLIST default revision CDATA #IMPLIED>
|
|
|
|
<!ATTLIST default dest-branch CDATA #IMPLIED>
|
|
|
|
<!ATTLIST default upstream CDATA #IMPLIED>
|
|
|
|
<!ATTLIST default sync-j CDATA #IMPLIED>
|
|
|
|
<!ATTLIST default sync-c CDATA #IMPLIED>
|
|
|
|
<!ATTLIST default sync-s CDATA #IMPLIED>
|
|
|
|
<!ATTLIST default sync-tags CDATA #IMPLIED>
|
|
|
|
|
|
|
|
<!ELEMENT manifest-server EMPTY>
|
|
|
|
<!ATTLIST manifest-server url CDATA #REQUIRED>
|
|
|
|
|
|
|
|
<!ELEMENT project (annotation*,
|
|
|
|
project*,
|
|
|
|
copyfile*,
|
|
|
|
linkfile*)>
|
|
|
|
<!ATTLIST project name CDATA #REQUIRED>
|
|
|
|
<!ATTLIST project path CDATA #IMPLIED>
|
|
|
|
<!ATTLIST project remote IDREF #IMPLIED>
|
|
|
|
<!ATTLIST project revision CDATA #IMPLIED>
|
|
|
|
<!ATTLIST project dest-branch CDATA #IMPLIED>
|
|
|
|
<!ATTLIST project groups CDATA #IMPLIED>
|
|
|
|
<!ATTLIST project sync-c CDATA #IMPLIED>
|
|
|
|
<!ATTLIST project sync-s CDATA #IMPLIED>
|
2019-03-18 04:30:58 +00:00
|
|
|
<!ATTLIST project sync-tags CDATA #IMPLIED>
|
2018-10-05 23:26:15 +00:00
|
|
|
<!ATTLIST project upstream CDATA #IMPLIED>
|
|
|
|
<!ATTLIST project clone-depth CDATA #IMPLIED>
|
|
|
|
<!ATTLIST project force-path CDATA #IMPLIED>
|
|
|
|
|
|
|
|
<!ELEMENT annotation EMPTY>
|
|
|
|
<!ATTLIST annotation name CDATA #REQUIRED>
|
|
|
|
<!ATTLIST annotation value CDATA #REQUIRED>
|
|
|
|
<!ATTLIST annotation keep CDATA "true">
|
|
|
|
|
|
|
|
<!ELEMENT copyfile EMPTY>
|
|
|
|
<!ATTLIST copyfile src CDATA #REQUIRED>
|
|
|
|
<!ATTLIST copyfile dest CDATA #REQUIRED>
|
|
|
|
|
|
|
|
<!ELEMENT linkfile EMPTY>
|
|
|
|
<!ATTLIST linkfile src CDATA #REQUIRED>
|
|
|
|
<!ATTLIST linkfile dest CDATA #REQUIRED>
|
|
|
|
|
|
|
|
<!ELEMENT extend-project EMPTY>
|
|
|
|
<!ATTLIST extend-project name CDATA #REQUIRED>
|
|
|
|
<!ATTLIST extend-project path CDATA #IMPLIED>
|
|
|
|
<!ATTLIST extend-project groups CDATA #IMPLIED>
|
|
|
|
<!ATTLIST extend-project revision CDATA #IMPLIED>
|
2020-02-04 02:38:53 +00:00
|
|
|
<!ATTLIST extend-project remote CDATA #IMPLIED>
|
2018-10-05 23:26:15 +00:00
|
|
|
|
|
|
|
<!ELEMENT remove-project EMPTY>
|
|
|
|
<!ATTLIST remove-project name CDATA #REQUIRED>
|
|
|
|
|
|
|
|
<!ELEMENT repo-hooks EMPTY>
|
|
|
|
<!ATTLIST repo-hooks in-project CDATA #REQUIRED>
|
|
|
|
<!ATTLIST repo-hooks enabled-list CDATA #REQUIRED>
|
|
|
|
|
|
|
|
<!ELEMENT include EMPTY>
|
2020-10-06 10:55:14 +00:00
|
|
|
<!ATTLIST include name CDATA #REQUIRED>
|
|
|
|
<!ATTLIST include groups CDATA #IMPLIED>
|
2018-10-05 23:26:15 +00:00
|
|
|
]>
|
|
|
|
```
|
2008-11-04 19:19:36 +00:00
|
|
|
|
|
|
|
A description of the elements and their attributes follows.
|
|
|
|
|
|
|
|
|
2018-10-10 05:05:11 +00:00
|
|
|
### Element manifest
|
2008-11-04 19:19:36 +00:00
|
|
|
|
|
|
|
The root element of the file.
|
|
|
|
|
2020-12-04 10:32:06 +00:00
|
|
|
### Element notice
|
|
|
|
|
|
|
|
Arbitrary text that is displayed to users whenever `repo sync` finishes.
|
|
|
|
The content is simply passed through as it exists in the manifest.
|
2008-11-04 19:19:36 +00:00
|
|
|
|
2018-10-10 05:05:11 +00:00
|
|
|
### Element remote
|
2008-11-04 19:19:36 +00:00
|
|
|
|
|
|
|
One or more remote elements may be specified. Each remote element
|
|
|
|
specifies a Git URL shared by one or more projects and (optionally)
|
|
|
|
the Gerrit review server those projects upload changes through.
|
|
|
|
|
|
|
|
Attribute `name`: A short name unique to this manifest file. The
|
|
|
|
name specified here is used as the remote name in each project's
|
|
|
|
.git/config, and is therefore automatically available to commands
|
|
|
|
like `git fetch`, `git remote`, `git pull` and `git push`.
|
|
|
|
|
2012-07-02 14:32:50 +00:00
|
|
|
Attribute `alias`: The alias, if specified, is used to override
|
|
|
|
`name` to be set as the remote name in each project's .git/config.
|
|
|
|
Its value can be duplicated while attribute `name` has to be unique
|
|
|
|
in the manifest file. This helps each project to be able to have
|
|
|
|
same remote name which actually points to different remote url.
|
|
|
|
|
2008-11-04 19:19:36 +00:00
|
|
|
Attribute `fetch`: The Git URL prefix for all projects which use
|
|
|
|
this remote. Each project's name is appended to this prefix to
|
|
|
|
form the actual URL used to clone the project.
|
|
|
|
|
2016-08-10 22:00:00 +00:00
|
|
|
Attribute `pushurl`: The Git "push" URL prefix for all projects
|
|
|
|
which use this remote. Each project's name is appended to this
|
|
|
|
prefix to form the actual URL used to "git push" the project.
|
|
|
|
This attribute is optional; if not specified then "git push"
|
|
|
|
will use the same URL as the `fetch` attribute.
|
|
|
|
|
2008-11-04 19:19:36 +00:00
|
|
|
Attribute `review`: Hostname of the Gerrit server where reviews
|
|
|
|
are uploaded to by `repo upload`. This attribute is optional;
|
|
|
|
if not specified then `repo upload` will not function.
|
|
|
|
|
2020-11-15 23:42:26 +00:00
|
|
|
Attribute `revision`: Name of a Git branch (e.g. `main` or
|
|
|
|
`refs/heads/main`). Remotes with their own revision will override
|
2014-05-06 10:54:01 +00:00
|
|
|
the default revision.
|
|
|
|
|
2018-10-10 05:05:11 +00:00
|
|
|
### Element default
|
2008-11-04 19:19:36 +00:00
|
|
|
|
|
|
|
At most one default element may be specified. Its remote and
|
|
|
|
revision attributes are used when a project element does not
|
|
|
|
specify its own remote or revision attribute.
|
|
|
|
|
|
|
|
Attribute `remote`: Name of a previously defined remote element.
|
|
|
|
Project elements lacking a remote attribute of their own will use
|
|
|
|
this remote.
|
|
|
|
|
2020-11-15 23:42:26 +00:00
|
|
|
Attribute `revision`: Name of a Git branch (e.g. `main` or
|
|
|
|
`refs/heads/main`). Project elements lacking their own
|
2008-11-04 19:19:36 +00:00
|
|
|
revision attribute will use this revision.
|
|
|
|
|
2020-11-15 23:42:26 +00:00
|
|
|
Attribute `dest-branch`: Name of a Git branch (e.g. `main`).
|
2013-05-06 17:36:24 +00:00
|
|
|
Project elements not setting their own `dest-branch` will inherit
|
|
|
|
this value. If this value is not set, projects will use `revision`
|
|
|
|
by default instead.
|
|
|
|
|
2018-05-04 18:53:29 +00:00
|
|
|
Attribute `upstream`: Name of the Git ref in which a sha1
|
|
|
|
can be found. Used when syncing a revision locked manifest in
|
|
|
|
-c mode to avoid having to sync the entire ref space. Project elements
|
|
|
|
not setting their own `upstream` will inherit this value.
|
|
|
|
|
2014-07-24 10:57:08 +00:00
|
|
|
Attribute `sync-j`: Number of parallel jobs to use when synching.
|
2012-11-27 13:20:10 +00:00
|
|
|
|
2014-07-24 10:57:08 +00:00
|
|
|
Attribute `sync-c`: Set to true to only sync the given Git
|
2012-11-27 13:20:10 +00:00
|
|
|
branch (specified in the `revision` attribute) rather than the
|
2014-07-24 10:57:08 +00:00
|
|
|
whole ref space. Project elements lacking a sync-c element of
|
2012-11-27 13:20:10 +00:00
|
|
|
their own will use this value.
|
|
|
|
|
2014-07-24 10:57:08 +00:00
|
|
|
Attribute `sync-s`: Set to true to also sync sub-projects.
|
2012-11-27 13:20:10 +00:00
|
|
|
|
2018-02-14 07:57:31 +00:00
|
|
|
Attribute `sync-tags`: Set to false to only sync the given Git
|
|
|
|
branch (specified in the `revision` attribute) rather than
|
|
|
|
the other ref tags.
|
|
|
|
|
2008-11-04 19:19:36 +00:00
|
|
|
|
2018-10-10 05:05:11 +00:00
|
|
|
### Element manifest-server
|
2010-04-06 17:40:01 +00:00
|
|
|
|
|
|
|
At most one manifest-server may be specified. The url attribute
|
|
|
|
is used to specify the URL of a manifest server, which is an
|
2012-08-21 05:23:49 +00:00
|
|
|
XML RPC service.
|
2010-04-06 17:40:01 +00:00
|
|
|
|
2012-08-21 05:23:49 +00:00
|
|
|
The manifest server should implement the following RPC methods:
|
2010-04-06 17:40:01 +00:00
|
|
|
|
2018-10-05 23:26:15 +00:00
|
|
|
GetApprovedManifest(branch, target)
|
2010-04-06 17:40:01 +00:00
|
|
|
|
2012-08-21 05:23:49 +00:00
|
|
|
Return a manifest in which each project is pegged to a known good revision
|
2016-04-13 08:55:34 +00:00
|
|
|
for the current branch and target. This is used by repo sync when the
|
|
|
|
--smart-sync option is given.
|
2012-08-21 05:23:49 +00:00
|
|
|
|
2010-04-06 17:40:01 +00:00
|
|
|
The target to use is defined by environment variables TARGET_PRODUCT
|
|
|
|
and TARGET_BUILD_VARIANT. These variables are used to create a string
|
|
|
|
of the form $TARGET_PRODUCT-$TARGET_BUILD_VARIANT, e.g. passion-userdebug.
|
|
|
|
If one of those variables or both are not present, the program will call
|
2012-08-21 04:52:18 +00:00
|
|
|
GetApprovedManifest without the target parameter and the manifest server
|
2010-04-06 17:40:01 +00:00
|
|
|
should choose a reasonable default target.
|
|
|
|
|
2018-10-05 23:26:15 +00:00
|
|
|
GetManifest(tag)
|
2012-08-21 05:23:49 +00:00
|
|
|
|
|
|
|
Return a manifest in which each project is pegged to the revision at
|
2016-04-13 08:55:34 +00:00
|
|
|
the specified tag. This is used by repo sync when the --smart-tag option
|
|
|
|
is given.
|
2012-08-21 05:23:49 +00:00
|
|
|
|
2010-04-06 17:40:01 +00:00
|
|
|
|
2018-10-10 05:05:11 +00:00
|
|
|
### Element project
|
2008-11-04 19:19:36 +00:00
|
|
|
|
|
|
|
One or more project elements may be specified. Each element
|
|
|
|
describes a single Git repository to be cloned into the repo
|
Represent git-submodule as nested projects, take 2
(Previous submission of this change broke Android buildbot due to
incorrect regular expression for parsing git-config output. During
investigation, we also found that Android, which pulls Chromium, has a
workaround for Chromium's submodules; its manifest includes Chromium's
submodules. This new change, in addition to fixing the regex, also
take this type of workarounds into consideration; it adds a new
attribute that makes repo not fetch submodules unless submodules have a
project element defined in the manifest, or this attribute is
overridden by a parent project element or by the default element.)
We need a representation of git-submodule in repo; otherwise repo will
not sync submodules, and leave workspace in a broken state. Of course
this will not be a problem if all projects are owned by the owner of the
manifest file, who may simply choose not to use git-submodule in all
projects. However, this is not possible in practice because manifest
file owner is unlikely to own all upstream projects.
As git submodules are simply git repositories, it is natural to treat
them as plain repo projects that live inside a repo project. That is,
we could use recursively declared projects to denote the is-submodule
relation of git repositories.
The behavior of repo remains the same to projects that do not have a
sub-project within. As for parent projects, repo fetches them and their
sub-projects as normal projects, and then checks out subprojects at the
commit specified in parent's commit object. The sub-project is fetched
at a path relative to parent project's working directory; so the path
specified in manifest file should match that of .gitmodules file.
If a submodule is not registered in repo manifest, repo will derive its
properties from itself and its parent project, which might not always be
correct. In such cases, the subproject is called a derived subproject.
To a user, a sub-project is merely a git-submodule; so all tips of
working with a git-submodule apply here, too. For example, you should
not run `repo sync` in a parent repository if its submodule is dirty.
Change-Id: I4b8344c1b9ccad2f58ad304573133e5d52e1faef
2012-01-11 03:28:42 +00:00
|
|
|
client workspace. You may specify Git-submodules by creating a
|
|
|
|
nested project. Git-submodules will be automatically
|
|
|
|
recognized and inherit their parent's attributes, but those
|
|
|
|
may be overridden by an explicitly specified project element.
|
2008-11-04 19:19:36 +00:00
|
|
|
|
|
|
|
Attribute `name`: A unique name for this project. The project's
|
|
|
|
name is appended onto its remote's fetch URL to generate the actual
|
|
|
|
URL to configure the Git remote with. The URL gets formed as:
|
|
|
|
|
2018-10-05 23:26:15 +00:00
|
|
|
${remote_fetch}/${project_name}.git
|
2008-11-04 19:19:36 +00:00
|
|
|
|
|
|
|
where ${remote_fetch} is the remote's fetch attribute and
|
|
|
|
${project_name} is the project's name attribute. The suffix ".git"
|
2012-08-21 04:52:18 +00:00
|
|
|
is always appended as repo assumes the upstream is a forest of
|
Represent git-submodule as nested projects, take 2
(Previous submission of this change broke Android buildbot due to
incorrect regular expression for parsing git-config output. During
investigation, we also found that Android, which pulls Chromium, has a
workaround for Chromium's submodules; its manifest includes Chromium's
submodules. This new change, in addition to fixing the regex, also
take this type of workarounds into consideration; it adds a new
attribute that makes repo not fetch submodules unless submodules have a
project element defined in the manifest, or this attribute is
overridden by a parent project element or by the default element.)
We need a representation of git-submodule in repo; otherwise repo will
not sync submodules, and leave workspace in a broken state. Of course
this will not be a problem if all projects are owned by the owner of the
manifest file, who may simply choose not to use git-submodule in all
projects. However, this is not possible in practice because manifest
file owner is unlikely to own all upstream projects.
As git submodules are simply git repositories, it is natural to treat
them as plain repo projects that live inside a repo project. That is,
we could use recursively declared projects to denote the is-submodule
relation of git repositories.
The behavior of repo remains the same to projects that do not have a
sub-project within. As for parent projects, repo fetches them and their
sub-projects as normal projects, and then checks out subprojects at the
commit specified in parent's commit object. The sub-project is fetched
at a path relative to parent project's working directory; so the path
specified in manifest file should match that of .gitmodules file.
If a submodule is not registered in repo manifest, repo will derive its
properties from itself and its parent project, which might not always be
correct. In such cases, the subproject is called a derived subproject.
To a user, a sub-project is merely a git-submodule; so all tips of
working with a git-submodule apply here, too. For example, you should
not run `repo sync` in a parent repository if its submodule is dirty.
Change-Id: I4b8344c1b9ccad2f58ad304573133e5d52e1faef
2012-01-11 03:28:42 +00:00
|
|
|
bare Git repositories. If the project has a parent element, its
|
|
|
|
name will be prefixed by the parent's.
|
2008-11-04 19:19:36 +00:00
|
|
|
|
|
|
|
The project name must match the name Gerrit knows, if Gerrit is
|
|
|
|
being used for code reviews.
|
|
|
|
|
|
|
|
Attribute `path`: An optional path relative to the top directory
|
|
|
|
of the repo client where the Git working directory for this project
|
|
|
|
should be placed. If not supplied the project name is used.
|
Represent git-submodule as nested projects, take 2
(Previous submission of this change broke Android buildbot due to
incorrect regular expression for parsing git-config output. During
investigation, we also found that Android, which pulls Chromium, has a
workaround for Chromium's submodules; its manifest includes Chromium's
submodules. This new change, in addition to fixing the regex, also
take this type of workarounds into consideration; it adds a new
attribute that makes repo not fetch submodules unless submodules have a
project element defined in the manifest, or this attribute is
overridden by a parent project element or by the default element.)
We need a representation of git-submodule in repo; otherwise repo will
not sync submodules, and leave workspace in a broken state. Of course
this will not be a problem if all projects are owned by the owner of the
manifest file, who may simply choose not to use git-submodule in all
projects. However, this is not possible in practice because manifest
file owner is unlikely to own all upstream projects.
As git submodules are simply git repositories, it is natural to treat
them as plain repo projects that live inside a repo project. That is,
we could use recursively declared projects to denote the is-submodule
relation of git repositories.
The behavior of repo remains the same to projects that do not have a
sub-project within. As for parent projects, repo fetches them and their
sub-projects as normal projects, and then checks out subprojects at the
commit specified in parent's commit object. The sub-project is fetched
at a path relative to parent project's working directory; so the path
specified in manifest file should match that of .gitmodules file.
If a submodule is not registered in repo manifest, repo will derive its
properties from itself and its parent project, which might not always be
correct. In such cases, the subproject is called a derived subproject.
To a user, a sub-project is merely a git-submodule; so all tips of
working with a git-submodule apply here, too. For example, you should
not run `repo sync` in a parent repository if its submodule is dirty.
Change-Id: I4b8344c1b9ccad2f58ad304573133e5d52e1faef
2012-01-11 03:28:42 +00:00
|
|
|
If the project has a parent element, its path will be prefixed
|
|
|
|
by the parent's.
|
2008-11-04 19:19:36 +00:00
|
|
|
|
|
|
|
Attribute `remote`: Name of a previously defined remote element.
|
|
|
|
If not supplied the remote given by the default element is used.
|
|
|
|
|
|
|
|
Attribute `revision`: Name of the Git branch the manifest wants
|
|
|
|
to track for this project. Names can be relative to refs/heads
|
2020-11-15 23:42:26 +00:00
|
|
|
(e.g. just "main") or absolute (e.g. "refs/heads/main").
|
2008-11-04 19:19:36 +00:00
|
|
|
Tags and/or explicit SHA-1s should work in theory, but have not
|
|
|
|
been extensively tested. If not supplied the revision given by
|
2014-05-06 10:54:01 +00:00
|
|
|
the remote element is used if applicable, else the default
|
|
|
|
element is used.
|
2008-11-04 19:19:36 +00:00
|
|
|
|
2020-11-15 23:42:26 +00:00
|
|
|
Attribute `dest-branch`: Name of a Git branch (e.g. `main`).
|
2013-05-06 17:36:24 +00:00
|
|
|
When using `repo upload`, changes will be submitted for code
|
|
|
|
review on this branch. If unspecified both here and in the
|
|
|
|
default element, `revision` is used instead.
|
|
|
|
|
2012-03-29 03:15:45 +00:00
|
|
|
Attribute `groups`: List of groups to which this project belongs,
|
2012-04-16 17:36:08 +00:00
|
|
|
whitespace or comma separated. All projects belong to the group
|
2012-08-13 20:11:18 +00:00
|
|
|
"all", and each project automatically belongs to a group of
|
|
|
|
its name:`name` and path:`path`. E.g. for
|
2020-12-12 09:50:22 +00:00
|
|
|
`<project name="monkeys" path="barrel-of"/>`, that project
|
2012-06-15 09:24:20 +00:00
|
|
|
definition is implicitly in the following manifest groups:
|
2012-08-13 20:11:18 +00:00
|
|
|
default, name:monkeys, and path:barrel-of. If you place a project in the
|
|
|
|
group "notdefault", it will not be automatically downloaded by repo.
|
Represent git-submodule as nested projects, take 2
(Previous submission of this change broke Android buildbot due to
incorrect regular expression for parsing git-config output. During
investigation, we also found that Android, which pulls Chromium, has a
workaround for Chromium's submodules; its manifest includes Chromium's
submodules. This new change, in addition to fixing the regex, also
take this type of workarounds into consideration; it adds a new
attribute that makes repo not fetch submodules unless submodules have a
project element defined in the manifest, or this attribute is
overridden by a parent project element or by the default element.)
We need a representation of git-submodule in repo; otherwise repo will
not sync submodules, and leave workspace in a broken state. Of course
this will not be a problem if all projects are owned by the owner of the
manifest file, who may simply choose not to use git-submodule in all
projects. However, this is not possible in practice because manifest
file owner is unlikely to own all upstream projects.
As git submodules are simply git repositories, it is natural to treat
them as plain repo projects that live inside a repo project. That is,
we could use recursively declared projects to denote the is-submodule
relation of git repositories.
The behavior of repo remains the same to projects that do not have a
sub-project within. As for parent projects, repo fetches them and their
sub-projects as normal projects, and then checks out subprojects at the
commit specified in parent's commit object. The sub-project is fetched
at a path relative to parent project's working directory; so the path
specified in manifest file should match that of .gitmodules file.
If a submodule is not registered in repo manifest, repo will derive its
properties from itself and its parent project, which might not always be
correct. In such cases, the subproject is called a derived subproject.
To a user, a sub-project is merely a git-submodule; so all tips of
working with a git-submodule apply here, too. For example, you should
not run `repo sync` in a parent repository if its submodule is dirty.
Change-Id: I4b8344c1b9ccad2f58ad304573133e5d52e1faef
2012-01-11 03:28:42 +00:00
|
|
|
If the project has a parent element, the `name` and `path` here
|
|
|
|
are the prefixed ones.
|
2012-03-29 03:15:45 +00:00
|
|
|
|
2014-07-24 10:57:08 +00:00
|
|
|
Attribute `sync-c`: Set to true to only sync the given Git
|
2012-11-27 13:20:10 +00:00
|
|
|
branch (specified in the `revision` attribute) rather than the
|
|
|
|
whole ref space.
|
|
|
|
|
2014-07-24 10:57:08 +00:00
|
|
|
Attribute `sync-s`: Set to true to also sync sub-projects.
|
2012-11-27 13:20:10 +00:00
|
|
|
|
2014-09-19 18:13:04 +00:00
|
|
|
Attribute `upstream`: Name of the Git ref in which a sha1
|
2012-11-27 13:20:10 +00:00
|
|
|
can be found. Used when syncing a revision locked manifest in
|
|
|
|
-c mode to avoid having to sync the entire ref space.
|
|
|
|
|
2012-11-27 13:25:30 +00:00
|
|
|
Attribute `clone-depth`: Set the depth to use when fetching this
|
|
|
|
project. If specified, this value will override any value given
|
|
|
|
to repo init with the --depth option on the command line.
|
|
|
|
|
2013-02-28 01:34:14 +00:00
|
|
|
Attribute `force-path`: Set to true to force this project to create the
|
|
|
|
local mirror repository according to its `path` attribute (if supplied)
|
|
|
|
rather than the `name` attribute. This attribute only applies to the
|
|
|
|
local mirrors syncing, it will be ignored when syncing the projects in a
|
|
|
|
client working directory.
|
|
|
|
|
2018-10-10 05:05:11 +00:00
|
|
|
### Element extend-project
|
2014-06-12 21:57:29 +00:00
|
|
|
|
|
|
|
Modify the attributes of the named project.
|
|
|
|
|
|
|
|
This element is mostly useful in a local manifest file, to modify the
|
|
|
|
attributes of an existing project without completely replacing the
|
|
|
|
existing project definition. This makes the local manifest more robust
|
|
|
|
against changes to the original manifest.
|
|
|
|
|
|
|
|
Attribute `path`: If specified, limit the change to projects checked out
|
|
|
|
at the specified path, rather than all projects with the given name.
|
|
|
|
|
|
|
|
Attribute `groups`: List of additional groups to which this project
|
|
|
|
belongs. Same syntax as the corresponding element of `project`.
|
|
|
|
|
2018-03-15 16:54:08 +00:00
|
|
|
Attribute `revision`: If specified, overrides the revision of the original
|
|
|
|
project. Same syntax as the corresponding element of `project`.
|
|
|
|
|
2020-02-04 02:38:53 +00:00
|
|
|
Attribute `remote`: If specified, overrides the remote of the original
|
|
|
|
project. Same syntax as the corresponding element of `project`.
|
|
|
|
|
2018-10-10 05:05:11 +00:00
|
|
|
### Element annotation
|
2012-04-12 20:04:13 +00:00
|
|
|
|
|
|
|
Zero or more annotation elements may be specified as children of a
|
|
|
|
project element. Each element describes a name-value pair that will be
|
|
|
|
exported into each project's environment during a 'forall' command,
|
|
|
|
prefixed with REPO__. In addition, there is an optional attribute
|
|
|
|
"keep" which accepts the case insensitive values "true" (default) or
|
|
|
|
"false". This attribute determines whether or not the annotation will
|
|
|
|
be kept when exported with the manifest subcommand.
|
|
|
|
|
2018-10-10 05:05:11 +00:00
|
|
|
### Element copyfile
|
2015-09-08 10:11:23 +00:00
|
|
|
|
|
|
|
Zero or more copyfile elements may be specified as children of a
|
|
|
|
project element. Each element describes a src-dest pair of files;
|
2018-10-05 23:26:15 +00:00
|
|
|
the "src" file will be copied to the "dest" place during `repo sync`
|
2015-09-08 10:11:23 +00:00
|
|
|
command.
|
2019-07-31 21:34:23 +00:00
|
|
|
|
2015-09-08 10:11:23 +00:00
|
|
|
"src" is project relative, "dest" is relative to the top of the tree.
|
2019-07-31 21:34:23 +00:00
|
|
|
Copying from paths outside of the project or to paths outside of the repo
|
|
|
|
client is not allowed.
|
|
|
|
|
|
|
|
"src" and "dest" must be files. Directories or symlinks are not allowed.
|
|
|
|
Intermediate paths must not be symlinks either.
|
2015-09-08 10:11:23 +00:00
|
|
|
|
2019-08-01 22:57:10 +00:00
|
|
|
Parent directories of "dest" will be automatically created if missing.
|
|
|
|
|
2018-10-10 05:05:11 +00:00
|
|
|
### Element linkfile
|
2015-09-08 10:11:23 +00:00
|
|
|
|
|
|
|
It's just like copyfile and runs at the same time as copyfile but
|
|
|
|
instead of copying it creates a symlink.
|
|
|
|
|
2019-07-31 21:34:23 +00:00
|
|
|
The symlink is created at "dest" (relative to the top of the tree) and
|
2019-08-01 03:32:58 +00:00
|
|
|
points to the path specified by "src" which is a path in the project.
|
2019-07-31 21:34:23 +00:00
|
|
|
|
2019-08-01 22:57:10 +00:00
|
|
|
Parent directories of "dest" will be automatically created if missing.
|
|
|
|
|
2019-07-31 21:34:23 +00:00
|
|
|
The symlink target may be a file or directory, but it may not point outside
|
|
|
|
of the repo client.
|
|
|
|
|
2018-10-10 05:05:11 +00:00
|
|
|
### Element remove-project
|
2008-11-20 19:42:22 +00:00
|
|
|
|
|
|
|
Deletes the named project from the internal manifest table, possibly
|
|
|
|
allowing a subsequent project element in the same manifest file to
|
|
|
|
replace the project with a different source.
|
|
|
|
|
2012-11-13 23:51:38 +00:00
|
|
|
This element is mostly useful in a local manifest file, where
|
2008-11-20 19:42:22 +00:00
|
|
|
the user can remove a project, and possibly replace it with their
|
|
|
|
own definition.
|
|
|
|
|
2020-12-04 10:32:06 +00:00
|
|
|
### Element repo-hooks
|
|
|
|
|
|
|
|
NB: See the [practical documentation](./repo-hooks.md) for using repo hooks.
|
|
|
|
|
|
|
|
Only one repo-hooks element may be specified at a time.
|
|
|
|
Attempting to redefine it will fail to parse.
|
|
|
|
|
|
|
|
Attribute `in-project`: The project where the hooks are defined. The value
|
|
|
|
must match the `name` attribute (**not** the `path` attribute) of a previously
|
|
|
|
defined `project` element.
|
|
|
|
|
|
|
|
Attribute `enabled-list`: List of hooks to use, whitespace or comma separated.
|
|
|
|
|
2018-10-10 05:05:11 +00:00
|
|
|
### Element include
|
2011-04-28 12:04:41 +00:00
|
|
|
|
|
|
|
This element provides the capability of including another manifest
|
|
|
|
file into the originating manifest. Normal rules apply for the
|
2012-11-13 23:52:25 +00:00
|
|
|
target manifest to include - it must be a usable manifest on its own.
|
2011-04-28 12:04:41 +00:00
|
|
|
|
2012-11-13 23:52:25 +00:00
|
|
|
Attribute `name`: the manifest to include, specified relative to
|
|
|
|
the manifest repository's root.
|
2011-04-28 12:04:41 +00:00
|
|
|
|
2020-10-06 10:55:14 +00:00
|
|
|
Attribute `groups`: List of additional groups to which all projects
|
|
|
|
in the included manifest belong. This appends and recurses, meaning
|
|
|
|
all projects in sub-manifests carry all parent include groups.
|
|
|
|
Same syntax as the corresponding element of `project`.
|
2008-11-20 19:42:22 +00:00
|
|
|
|
2018-10-10 05:05:11 +00:00
|
|
|
## Local Manifests
|
2008-11-06 16:48:44 +00:00
|
|
|
|
2012-11-12 17:50:36 +00:00
|
|
|
Additional remotes and projects may be added through local manifest
|
|
|
|
files stored in `$TOP_DIR/.repo/local_manifests/*.xml`.
|
2008-11-06 16:48:44 +00:00
|
|
|
|
|
|
|
For example:
|
|
|
|
|
2018-10-05 23:26:15 +00:00
|
|
|
$ ls .repo/local_manifests
|
|
|
|
local_manifest.xml
|
|
|
|
another_local_manifest.xml
|
|
|
|
|
|
|
|
$ cat .repo/local_manifests/local_manifest.xml
|
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<manifest>
|
|
|
|
<project path="manifest"
|
|
|
|
name="tools/manifest" />
|
|
|
|
<project path="platform-manifest"
|
|
|
|
name="platform/manifest" />
|
|
|
|
</manifest>
|
2008-11-06 16:48:44 +00:00
|
|
|
|
2012-11-12 17:50:36 +00:00
|
|
|
Users may add projects to the local manifest(s) prior to a `repo sync`
|
2008-11-06 16:48:44 +00:00
|
|
|
invocation, instructing repo to automatically download and manage
|
|
|
|
these extra projects.
|
2012-11-12 17:50:36 +00:00
|
|
|
|
2012-11-13 19:53:24 +00:00
|
|
|
Manifest files stored in `$TOP_DIR/.repo/local_manifests/*.xml` will
|
|
|
|
be loaded in alphabetical order.
|
|
|
|
|
2020-09-06 18:42:47 +00:00
|
|
|
The legacy `$TOP_DIR/.repo/local_manifest.xml` path is no longer supported.
|