-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault.xml
More file actions
27 lines (24 loc) · 1.26 KB
/
default.xml
File metadata and controls
27 lines (24 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?xml version="1.0" encoding="UTF-8"?>
<manifest>
<!-- remote element. -->
<!-- several remote element, used to specify different project's default download server -->
<!-- Main Attribute:
┊ ┊fetch:all projects' git URL prefix
-->
<remote name="origin" fetch="." />
<!-- <remote name="origin" fetch="git@github.com:afirez" /> -->
<!-- default element. all projects' default attribute if project element not specified -->
<!-- Main Attribute:
┊ ┊revision:git branch's name. master or refs/heads/master ...
┊ ┊path: local sub directory used in git clone
┊ ┊sync_j: repo sync threads used
┊ ┊sync_c: True/False. sync specific revision(branch)
┊ ┊sync_s: True/False. sync git's children project
-->
<default remote="origin" revision="master" sync_j="4" />
<!-- project element, name:unique signature pointed to project. -->
<!-- project git URL: ${remote fetch}/${project name} -->
<!-- <project name="manifest" path="manifest" remote="origin" revision="master" /> -->
<!-- <project name="test/pro_3" path="test/pro_3" remote="origin" revision="master" /> -->
<project name="sonice" path="sonice" remote="origin" revision="master" />
</manifest>