summaryrefslogtreecommitdiffstats
path: root/docs/manifest-format.txt
diff options
context:
space:
mode:
Diffstat (limited to 'docs/manifest-format.txt')
-rw-r--r--docs/manifest-format.txt7
1 files changed, 7 insertions, 0 deletions
diff --git a/docs/manifest-format.txt b/docs/manifest-format.txt
index 8fd9137c..2a07f199 100644
--- a/docs/manifest-format.txt
+++ b/docs/manifest-format.txt
@@ -35,6 +35,7 @@ following DTD:
35 <!ATTLIST remote name ID #REQUIRED> 35 <!ATTLIST remote name ID #REQUIRED>
36 <!ATTLIST remote alias CDATA #IMPLIED> 36 <!ATTLIST remote alias CDATA #IMPLIED>
37 <!ATTLIST remote fetch CDATA #REQUIRED> 37 <!ATTLIST remote fetch CDATA #REQUIRED>
38 <!ATTLIST remote pushurl CDATA #IMPLIED>
38 <!ATTLIST remote review CDATA #IMPLIED> 39 <!ATTLIST remote review CDATA #IMPLIED>
39 <!ATTLIST remote revision CDATA #IMPLIED> 40 <!ATTLIST remote revision CDATA #IMPLIED>
40 41
@@ -125,6 +126,12 @@ Attribute `fetch`: The Git URL prefix for all projects which use
125this remote. Each project's name is appended to this prefix to 126this remote. Each project's name is appended to this prefix to
126form the actual URL used to clone the project. 127form the actual URL used to clone the project.
127 128
129Attribute `pushurl`: The Git "push" URL prefix for all projects
130which use this remote. Each project's name is appended to this
131prefix to form the actual URL used to "git push" the project.
132This attribute is optional; if not specified then "git push"
133will use the same URL as the `fetch` attribute.
134
128Attribute `review`: Hostname of the Gerrit server where reviews 135Attribute `review`: Hostname of the Gerrit server where reviews
129are uploaded to by `repo upload`. This attribute is optional; 136are uploaded to by `repo upload`. This attribute is optional;
130if not specified then `repo upload` will not function. 137if not specified then `repo upload` will not function.