# manifest.git **Repository Path**: cb5654_sdk/manifest ## Basic Information - **Project Name**: manifest.git - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-02-09 - **Last Updated**: 2021-08-30 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## 概述 ## 字段描述 1. remotes(必选) git的远程服务器的配置,以数组的形式展示仓库地址和名字 2. components(必选) 组件列表配置 - name:必选。组件名字 - remote:必选。远程服务器的名字,可以是remote字段中的key值,也可以是具体的URL。 - type:必选。组件类型,common、chip、sdk、board、solution - desc:可选。组件的描述,在list组件的时候进行展示 3. includes (可选) 引入另外多个manifest.yaml文件,格式相同 ## 例子 ```yaml remotes: # 远程GIT服务器 - gitee: https://gitee.com - github: https://github.com - private: ssh://git@github.com components: # 组件列表 - name: aos remote: gitee type: common desc: "abcd" - name: kv remote: gitee type: common desc: "xxxx" - name: transfer remote: private type: common desc: "rttt" - name: partition remote: https://giteee.com/partition.git type: common desc: "ffrr" includes: - https://xx.xx.xx.xx/1.yaml - https://yy.yy.yy.yy/2.yaml ```