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