summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorDavid Pursehouse <david.pursehouse@sonymobile.com>2012-11-14 04:53:24 +0900
committerDavid Pursehouse <david.pursehouse@sonymobile.com>2012-11-14 05:05:32 +0900
commit52f1e5d9111c586624de48b5f705e10b67d109b3 (patch)
tree64861a0d67e6194626a5fa8cd1c8d044bd353e1b /docs
parent8e3d355d448671e7c9b3409a3bbde971f90d7c28 (diff)
downloadgit-repo-52f1e5d9111c586624de48b5f705e10b67d109b3.tar.gz
Make load order of local manifests deterministic
Local manifest files stored in the local_manifests folder are loaded in alphabetical order, so it's easier to know in which order project removals/additions/modifications will be applied. If local_manifests.xml exists, it will be loaded before the files in local_manifests. Change-Id: Ia5c0349608f1823b4662cd6b340b99915bd973d5
Diffstat (limited to 'docs')
-rw-r--r--docs/manifest-format.txt6
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/manifest-format.txt b/docs/manifest-format.txt
index 9589352e..20ab9eb0 100644
--- a/docs/manifest-format.txt
+++ b/docs/manifest-format.txt
@@ -249,7 +249,13 @@ Users may add projects to the local manifest(s) prior to a `repo sync`
249invocation, instructing repo to automatically download and manage 249invocation, instructing repo to automatically download and manage
250these extra projects. 250these extra projects.
251 251
252Manifest files stored in `$TOP_DIR/.repo/local_manifests/*.xml` will
253be loaded in alphabetical order.
254
252Additional remotes and projects may also be added through a local 255Additional remotes and projects may also be added through a local
253manifest, stored in `$TOP_DIR/.repo/local_manifest.xml`. This method 256manifest, stored in `$TOP_DIR/.repo/local_manifest.xml`. This method
254is deprecated in favor of using multiple manifest files as mentioned 257is deprecated in favor of using multiple manifest files as mentioned
255above. 258above.
259
260If `$TOP_DIR/.repo/local_manifest.xml` exists, it will be loaded before
261any manifest files stored in `$TOP_DIR/.repo/local_manifests/*.xml`.