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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# Path to target git repository.
= "000_git"
# This is subsection with list of repositories to be aggregated into single repo.
# Each subsection start like this (see toml format for arrays).
[[]]
# Mercurial repository path.
= "001_hg"
# Child Git repository path.
= "001_git"
# Child repository configuration for 001_hg/001_git.
# Fields are the same as on root level in single mode configuration.
[]
= true
= 1000
= 'prefix1'
= 'prefix2-'
= 'prefix3-'
= true
# Same as authors section in single mode, but for this child repository.
[]
= 'Bbb <bbb@company.xyz>'
# Same as branches section in single mode, but for this child repository.
[]
= 'branch2'
# This sections specify to which branches would be merged migrated
# branches from this child Git repository.
[]
= 'branch2'
# Explanation: in this case branch_in_git will be a branch in 000_git repo
# and it will contain branch2 merged from remote child repository.
# This is second child repository.
[[]]
# Here we can also specify alias, this field used to add reference in target 000_git repository.
# Otherwise path_prefix is used from config section.
= "another_002"
= "002_hg"
= "002_git"
[]
= 'branch_in_hg'
# Actually this branch_in_hg is from second migrated Git repository.
# Interesting to note - both child repository branches are merged
# into single branch_in_git branch in target 000_git repository.