diff options
author | Doug Anderson <dianders@google.com> | 2010-11-01 15:08:06 -0700 |
---|---|---|
committer | Doug Anderson <dianders@google.com> | 2010-11-01 15:08:06 -0700 |
commit | 2b8db3ce3e7344b9f3b5216637c5af0d54be5656 (patch) | |
tree | 10f0c759efdade6a556eac16b46160b4843135d5 /docs | |
parent | 5df6de075e5fb674368d38f858419425bc8d8d07 (diff) | |
download | git-repo-2b8db3ce3e7344b9f3b5216637c5af0d54be5656.tar.gz |
Added feature to print a <notice> from manifest at the end of a sync.v1.7.1
This feature is used to convey information on a when a branch has
ceased development or if it is an experimental branch with a few
gotchas, etc.
You add it to your manifest XML by doing something like this:
<manifest>
<notice>
NOTE TO DEVELOPERS:
If you checkin code, you have to pinky-swear that it contains no bugs.
Anyone who breaks their promise will have tomatoes thrown at them in the
team meeting. Be sure to bring an extra set of clothes.
</notice>
<remote ... />
...
</manifest>
Carriage returns and indentation are relevant for the text in this tag.
This feature was requested by Anush Elangovan on the ChromiumOS team.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/manifest-format.txt | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/docs/manifest-format.txt b/docs/manifest-format.txt index 211344ee..2e1c8c35 100644 --- a/docs/manifest-format.txt +++ b/docs/manifest-format.txt | |||
@@ -20,12 +20,15 @@ A manifest XML file (e.g. 'default.xml') roughly conforms to the | |||
20 | following DTD: | 20 | following DTD: |
21 | 21 | ||
22 | <!DOCTYPE manifest [ | 22 | <!DOCTYPE manifest [ |
23 | <!ELEMENT manifest (remote*, | 23 | <!ELEMENT manifest (notice?, |
24 | remote*, | ||
24 | default?, | 25 | default?, |
25 | manifest-server?, | 26 | manifest-server?, |
26 | remove-project*, | 27 | remove-project*, |
27 | project*)> | 28 | project*)> |
28 | 29 | ||
30 | <!ELEMENT notice (#PCDATA)> | ||
31 | |||
29 | <!ELEMENT remote (EMPTY)> | 32 | <!ELEMENT remote (EMPTY)> |
30 | <!ATTLIST remote name ID #REQUIRED> | 33 | <!ATTLIST remote name ID #REQUIRED> |
31 | <!ATTLIST remote fetch CDATA #REQUIRED> | 34 | <!ATTLIST remote fetch CDATA #REQUIRED> |