##// END OF EJS Templates
test-command-template: test 'file_copies' keyword
Patrick Mezard -
r10059:9dd4e285 default
parent child Browse files
Show More
@@ -1,175 +1,177
1 #!/bin/sh
1 #!/bin/sh
2
2
3 hg init a
3 hg init a
4 cd a
4 cd a
5 echo a > a
5 echo a > a
6 hg add a
6 hg add a
7 echo line 1 > b
7 echo line 1 > b
8 echo line 2 >> b
8 echo line 2 >> b
9 hg commit -l b -d '1000000 0' -u 'User Name <user@hostname>'
9 hg commit -l b -d '1000000 0' -u 'User Name <user@hostname>'
10 hg add b
10 hg add b
11 echo other 1 > c
11 echo other 1 > c
12 echo other 2 >> c
12 echo other 2 >> c
13 echo >> c
13 echo >> c
14 echo other 3 >> c
14 echo other 3 >> c
15 hg commit -l c -d '1100000 0' -u 'A. N. Other <other@place>'
15 hg commit -l c -d '1100000 0' -u 'A. N. Other <other@place>'
16 hg add c
16 hg add c
17 hg commit -m 'no person' -d '1200000 0' -u 'other@place'
17 hg commit -m 'no person' -d '1200000 0' -u 'other@place'
18 echo c >> c
18 echo c >> c
19 hg commit -m 'no user, no domain' -d '1300000 0' -u 'person'
19 hg commit -m 'no user, no domain' -d '1300000 0' -u 'person'
20 echo foo > .hg/branch
20 echo foo > .hg/branch
21 hg commit -m 'new branch' -d '1400000 0' -u 'person'
21 hg commit -m 'new branch' -d '1400000 0' -u 'person'
22 hg co -q 3
22 hg co -q 3
23 echo other 4 >> d
23 echo other 4 >> d
24 hg add d
24 hg add d
25 hg commit -m 'new head' -d '1500000 0' -u 'person'
25 hg commit -m 'new head' -d '1500000 0' -u 'person'
26 hg merge -q foo
26 hg merge -q foo
27 hg commit -m 'merge' -d '1500001 0' -u 'person'
27 hg commit -m 'merge' -d '1500001 0' -u 'person'
28 # second branch starting at nullrev
28 # second branch starting at nullrev
29 hg update null
29 hg update null
30 echo second > second
30 echo second > second
31 hg add second
31 hg add second
32 hg commit -m second -d '1000000 0' -u 'User Name <user@hostname>'
32 hg commit -m second -d '1000000 0' -u 'User Name <user@hostname>'
33 echo third > third
33 echo third > third
34 hg add third
34 hg add third
35 hg mv second fourth
35 hg commit -m third -d "2020-01-01 10:01"
36 hg commit -m third -d "2020-01-01 10:01"
36
37
37 # make sure user/global hgrc does not affect tests
38 # make sure user/global hgrc does not affect tests
38 echo '[ui]' > .hg/hgrc
39 echo '[ui]' > .hg/hgrc
39 echo 'logtemplate =' >> .hg/hgrc
40 echo 'logtemplate =' >> .hg/hgrc
40 echo 'style =' >> .hg/hgrc
41 echo 'style =' >> .hg/hgrc
41
42
42 echo '# default style is like normal output'
43 echo '# default style is like normal output'
43 echo '# normal'
44 echo '# normal'
44 hg log > log.out
45 hg log > log.out
45 hg log --style default > style.out
46 hg log --style default > style.out
46 cmp log.out style.out || diff -u log.out style.out
47 cmp log.out style.out || diff -u log.out style.out
47 echo '# verbose'
48 echo '# verbose'
48 hg log -v > log.out
49 hg log -v > log.out
49 hg log -v --style default > style.out
50 hg log -v --style default > style.out
50 cmp log.out style.out || diff -u log.out style.out
51 cmp log.out style.out || diff -u log.out style.out
51 echo '# debug'
52 echo '# debug'
52 hg log --debug > log.out
53 hg log --debug > log.out
53 hg log --debug --style default > style.out
54 hg log --debug --style default > style.out
54 cmp log.out style.out || diff -u log.out style.out
55 cmp log.out style.out || diff -u log.out style.out
55
56
56 echo '# revision with no copies (used to print a traceback)'
57 echo '# revision with no copies (used to print a traceback)'
57 hg tip -v --template '\n'
58 hg tip -v --template '\n'
58
59
59 echo '# compact style works'
60 echo '# compact style works'
60 hg log --style compact
61 hg log --style compact
61 hg log -v --style compact
62 hg log -v --style compact
62 hg log --debug --style compact
63 hg log --debug --style compact
63
64
64 echo '# error if style not readable'
65 echo '# error if style not readable'
65 touch q
66 touch q
66 chmod 0 q
67 chmod 0 q
67 hg log --style ./q
68 hg log --style ./q
68
69
69 echo '# error if no style'
70 echo '# error if no style'
70 hg log --style notexist
71 hg log --style notexist
71
72
72 echo '# error if style missing key'
73 echo '# error if style missing key'
73 echo 'q = q' > t
74 echo 'q = q' > t
74 hg log --style ./t
75 hg log --style ./t
75
76
76 echo '# error if include fails'
77 echo '# error if include fails'
77 echo 'changeset = q' >> t
78 echo 'changeset = q' >> t
78 hg log --style ./t
79 hg log --style ./t
79
80
80 echo '# include works'
81 echo '# include works'
81 rm q
82 rm q
82 echo '{rev}' > q
83 echo '{rev}' > q
83 hg log --style ./t
84 hg log --style ./t
84
85
85 echo '# ui.style works'
86 echo '# ui.style works'
86 echo '[ui]' > .hg/hgrc
87 echo '[ui]' > .hg/hgrc
87 echo 'style = t' >> .hg/hgrc
88 echo 'style = t' >> .hg/hgrc
88 hg log
89 hg log
89
90
90 echo '# issue338'
91 echo '# issue338'
91 hg log --style=changelog > changelog
92 hg log --style=changelog > changelog
92 cat changelog
93 cat changelog
93
94
94 echo "# keys work"
95 echo "# keys work"
95 for key in author branches date desc file_adds file_dels file_mods \
96 for key in author branches date desc file_adds file_dels file_mods \
96 files manifest node parents rev tags diffstat extras; do
97 'file_copies%filecopy' files manifest node parents rev tags diffstat \
98 extras; do
97 for mode in '' --verbose --debug; do
99 for mode in '' --verbose --debug; do
98 hg log $mode --template "$key$mode: {$key}\n"
100 hg log $mode --template "$key$mode: {$key}\n"
99 done
101 done
100 done
102 done
101
103
102 echo '# filters work'
104 echo '# filters work'
103 hg log --template '{author|domain}\n'
105 hg log --template '{author|domain}\n'
104 hg log --template '{author|person}\n'
106 hg log --template '{author|person}\n'
105 hg log --template '{author|user}\n'
107 hg log --template '{author|user}\n'
106 hg log --template '{date|age}\n' > /dev/null || exit 1
108 hg log --template '{date|age}\n' > /dev/null || exit 1
107 hg log -l1 --template '{date|age}\n'
109 hg log -l1 --template '{date|age}\n'
108 hg log --template '{date|date}\n'
110 hg log --template '{date|date}\n'
109 hg log --template '{date|isodate}\n'
111 hg log --template '{date|isodate}\n'
110 hg log --template '{date|isodatesec}\n'
112 hg log --template '{date|isodatesec}\n'
111 hg log --template '{date|rfc822date}\n'
113 hg log --template '{date|rfc822date}\n'
112 hg log --template '{desc|firstline}\n'
114 hg log --template '{desc|firstline}\n'
113 hg log --template '{node|short}\n'
115 hg log --template '{node|short}\n'
114 hg log --template '<changeset author="{author|xmlescape}"/>\n'
116 hg log --template '<changeset author="{author|xmlescape}"/>\n'
115
117
116 echo '# formatnode filter works'
118 echo '# formatnode filter works'
117 echo '# quiet'
119 echo '# quiet'
118 hg -q log -r 0 --template '{node|formatnode}\n'
120 hg -q log -r 0 --template '{node|formatnode}\n'
119 echo '# normal'
121 echo '# normal'
120 hg log -r 0 --template '{node|formatnode}\n'
122 hg log -r 0 --template '{node|formatnode}\n'
121 echo '# verbose'
123 echo '# verbose'
122 hg -v log -r 0 --template '{node|formatnode}\n'
124 hg -v log -r 0 --template '{node|formatnode}\n'
123 echo '# debug'
125 echo '# debug'
124 hg --debug log -r 0 --template '{node|formatnode}\n'
126 hg --debug log -r 0 --template '{node|formatnode}\n'
125
127
126 echo '# error on syntax'
128 echo '# error on syntax'
127 echo 'x = "f' >> t
129 echo 'x = "f' >> t
128 hg log
130 hg log
129
131
130 cd ..
132 cd ..
131
133
132 echo '# latesttag'
134 echo '# latesttag'
133 hg init latesttag
135 hg init latesttag
134 cd latesttag
136 cd latesttag
135
137
136 echo a > file
138 echo a > file
137 hg ci -Am a -d '0 0'
139 hg ci -Am a -d '0 0'
138
140
139 echo b >> file
141 echo b >> file
140 hg ci -m b -d '1 0'
142 hg ci -m b -d '1 0'
141
143
142 echo c >> head1
144 echo c >> head1
143 hg ci -Am h1c -d '2 0'
145 hg ci -Am h1c -d '2 0'
144
146
145 hg update -q 1
147 hg update -q 1
146 echo d >> head2
148 echo d >> head2
147 hg ci -Am h2d -d '3 0'
149 hg ci -Am h2d -d '3 0'
148
150
149 echo e >> head2
151 echo e >> head2
150 hg ci -m h2e -d '4 0'
152 hg ci -m h2e -d '4 0'
151
153
152 hg merge -q
154 hg merge -q
153 hg ci -m merge -d '5 0'
155 hg ci -m merge -d '5 0'
154
156
155 echo '# No tag set'
157 echo '# No tag set'
156 hg log --template '{rev}: {latesttag}+{latesttagdistance}\n'
158 hg log --template '{rev}: {latesttag}+{latesttagdistance}\n'
157
159
158 echo '# one common tag: longuest path wins'
160 echo '# one common tag: longuest path wins'
159 hg tag -r 1 -m t1 -d '6 0' t1
161 hg tag -r 1 -m t1 -d '6 0' t1
160 hg log --template '{rev}: {latesttag}+{latesttagdistance}\n'
162 hg log --template '{rev}: {latesttag}+{latesttagdistance}\n'
161
163
162 echo '# one ancestor tag: more recent wins'
164 echo '# one ancestor tag: more recent wins'
163 hg tag -r 2 -m t2 -d '7 0' t2
165 hg tag -r 2 -m t2 -d '7 0' t2
164 hg log --template '{rev}: {latesttag}+{latesttagdistance}\n'
166 hg log --template '{rev}: {latesttag}+{latesttagdistance}\n'
165
167
166 echo '# two branch tags: more recent wins'
168 echo '# two branch tags: more recent wins'
167 hg tag -r 3 -m t3 -d '8 0' t3
169 hg tag -r 3 -m t3 -d '8 0' t3
168 hg log --template '{rev}: {latesttag}+{latesttagdistance}\n'
170 hg log --template '{rev}: {latesttag}+{latesttagdistance}\n'
169
171
170 echo '# merged tag overrides'
172 echo '# merged tag overrides'
171 hg tag -r 5 -m t5 -d '9 0' t5
173 hg tag -r 5 -m t5 -d '9 0' t5
172 hg tag -r 3 -m at3 -d '10 0' at3
174 hg tag -r 3 -m at3 -d '10 0' at3
173 hg log --template '{rev}: {latesttag}+{latesttagdistance}\n'
175 hg log --template '{rev}: {latesttag}+{latesttagdistance}\n'
174
176
175 echo '# done'
177 echo '# done'
@@ -1,753 +1,780
1 created new head
1 created new head
2 0 files updated, 0 files merged, 4 files removed, 0 files unresolved
2 0 files updated, 0 files merged, 4 files removed, 0 files unresolved
3 created new head
3 created new head
4 # default style is like normal output
4 # default style is like normal output
5 # normal
5 # normal
6 # verbose
6 # verbose
7 # debug
7 # debug
8 # revision with no copies (used to print a traceback)
8 # revision with no copies (used to print a traceback)
9
9
10 # compact style works
10 # compact style works
11 8[tip] 946e2bd9c565 2020-01-01 10:01 +0000 test
11 8[tip] 3bdecc1cde0c 2020-01-01 10:01 +0000 test
12 third
12 third
13
13
14 7:-1 29114dbae42b 1970-01-12 13:46 +0000 user
14 7:-1 29114dbae42b 1970-01-12 13:46 +0000 user
15 second
15 second
16
16
17 6:5,4 c7b487c6c50e 1970-01-18 08:40 +0000 person
17 6:5,4 c7b487c6c50e 1970-01-18 08:40 +0000 person
18 merge
18 merge
19
19
20 5:3 13207e5a10d9 1970-01-18 08:40 +0000 person
20 5:3 13207e5a10d9 1970-01-18 08:40 +0000 person
21 new head
21 new head
22
22
23 4 32a18f097fcc 1970-01-17 04:53 +0000 person
23 4 32a18f097fcc 1970-01-17 04:53 +0000 person
24 new branch
24 new branch
25
25
26 3 10e46f2dcbf4 1970-01-16 01:06 +0000 person
26 3 10e46f2dcbf4 1970-01-16 01:06 +0000 person
27 no user, no domain
27 no user, no domain
28
28
29 2 97054abb4ab8 1970-01-14 21:20 +0000 other
29 2 97054abb4ab8 1970-01-14 21:20 +0000 other
30 no person
30 no person
31
31
32 1 b608e9d1a3f0 1970-01-13 17:33 +0000 other
32 1 b608e9d1a3f0 1970-01-13 17:33 +0000 other
33 other 1
33 other 1
34
34
35 0 1e4e1b8f71e0 1970-01-12 13:46 +0000 user
35 0 1e4e1b8f71e0 1970-01-12 13:46 +0000 user
36 line 1
36 line 1
37
37
38 8[tip] 946e2bd9c565 2020-01-01 10:01 +0000 test
38 8[tip] 3bdecc1cde0c 2020-01-01 10:01 +0000 test
39 third
39 third
40
40
41 7:-1 29114dbae42b 1970-01-12 13:46 +0000 User Name <user@hostname>
41 7:-1 29114dbae42b 1970-01-12 13:46 +0000 User Name <user@hostname>
42 second
42 second
43
43
44 6:5,4 c7b487c6c50e 1970-01-18 08:40 +0000 person
44 6:5,4 c7b487c6c50e 1970-01-18 08:40 +0000 person
45 merge
45 merge
46
46
47 5:3 13207e5a10d9 1970-01-18 08:40 +0000 person
47 5:3 13207e5a10d9 1970-01-18 08:40 +0000 person
48 new head
48 new head
49
49
50 4 32a18f097fcc 1970-01-17 04:53 +0000 person
50 4 32a18f097fcc 1970-01-17 04:53 +0000 person
51 new branch
51 new branch
52
52
53 3 10e46f2dcbf4 1970-01-16 01:06 +0000 person
53 3 10e46f2dcbf4 1970-01-16 01:06 +0000 person
54 no user, no domain
54 no user, no domain
55
55
56 2 97054abb4ab8 1970-01-14 21:20 +0000 other@place
56 2 97054abb4ab8 1970-01-14 21:20 +0000 other@place
57 no person
57 no person
58
58
59 1 b608e9d1a3f0 1970-01-13 17:33 +0000 A. N. Other <other@place>
59 1 b608e9d1a3f0 1970-01-13 17:33 +0000 A. N. Other <other@place>
60 other 1
60 other 1
61 other 2
61 other 2
62
62
63 other 3
63 other 3
64
64
65 0 1e4e1b8f71e0 1970-01-12 13:46 +0000 User Name <user@hostname>
65 0 1e4e1b8f71e0 1970-01-12 13:46 +0000 User Name <user@hostname>
66 line 1
66 line 1
67 line 2
67 line 2
68
68
69 8[tip]:7,-1 946e2bd9c565 2020-01-01 10:01 +0000 test
69 8[tip]:7,-1 3bdecc1cde0c 2020-01-01 10:01 +0000 test
70 third
70 third
71
71
72 7:-1,-1 29114dbae42b 1970-01-12 13:46 +0000 User Name <user@hostname>
72 7:-1,-1 29114dbae42b 1970-01-12 13:46 +0000 User Name <user@hostname>
73 second
73 second
74
74
75 6:5,4 c7b487c6c50e 1970-01-18 08:40 +0000 person
75 6:5,4 c7b487c6c50e 1970-01-18 08:40 +0000 person
76 merge
76 merge
77
77
78 5:3,-1 13207e5a10d9 1970-01-18 08:40 +0000 person
78 5:3,-1 13207e5a10d9 1970-01-18 08:40 +0000 person
79 new head
79 new head
80
80
81 4:3,-1 32a18f097fcc 1970-01-17 04:53 +0000 person
81 4:3,-1 32a18f097fcc 1970-01-17 04:53 +0000 person
82 new branch
82 new branch
83
83
84 3:2,-1 10e46f2dcbf4 1970-01-16 01:06 +0000 person
84 3:2,-1 10e46f2dcbf4 1970-01-16 01:06 +0000 person
85 no user, no domain
85 no user, no domain
86
86
87 2:1,-1 97054abb4ab8 1970-01-14 21:20 +0000 other@place
87 2:1,-1 97054abb4ab8 1970-01-14 21:20 +0000 other@place
88 no person
88 no person
89
89
90 1:0,-1 b608e9d1a3f0 1970-01-13 17:33 +0000 A. N. Other <other@place>
90 1:0,-1 b608e9d1a3f0 1970-01-13 17:33 +0000 A. N. Other <other@place>
91 other 1
91 other 1
92 other 2
92 other 2
93
93
94 other 3
94 other 3
95
95
96 0:-1,-1 1e4e1b8f71e0 1970-01-12 13:46 +0000 User Name <user@hostname>
96 0:-1,-1 1e4e1b8f71e0 1970-01-12 13:46 +0000 User Name <user@hostname>
97 line 1
97 line 1
98 line 2
98 line 2
99
99
100 # error if style not readable
100 # error if style not readable
101 abort: Permission denied: ./q
101 abort: Permission denied: ./q
102 # error if no style
102 # error if no style
103 abort: style not found: notexist
103 abort: style not found: notexist
104 # error if style missing key
104 # error if style missing key
105 abort: ./t: no key named 'changeset'
105 abort: ./t: no key named 'changeset'
106 # error if include fails
106 # error if include fails
107 abort: template file ./q: Permission denied
107 abort: template file ./q: Permission denied
108 # include works
108 # include works
109 8
109 8
110 7
110 7
111 6
111 6
112 5
112 5
113 4
113 4
114 3
114 3
115 2
115 2
116 1
116 1
117 0
117 0
118 # ui.style works
118 # ui.style works
119 8
119 8
120 7
120 7
121 6
121 6
122 5
122 5
123 4
123 4
124 3
124 3
125 2
125 2
126 1
126 1
127 0
127 0
128 # issue338
128 # issue338
129 2020-01-01 test <test>
129 2020-01-01 test <test>
130
130
131 * third:
131 * fourth, second, third:
132 third
132 third
133 [946e2bd9c565] [tip]
133 [3bdecc1cde0c] [tip]
134
134
135 1970-01-12 User Name <user@hostname>
135 1970-01-12 User Name <user@hostname>
136
136
137 * second:
137 * second:
138 second
138 second
139 [29114dbae42b]
139 [29114dbae42b]
140
140
141 1970-01-18 person <person>
141 1970-01-18 person <person>
142
142
143 * merge
143 * merge
144 [c7b487c6c50e]
144 [c7b487c6c50e]
145
145
146 * d:
146 * d:
147 new head
147 new head
148 [13207e5a10d9]
148 [13207e5a10d9]
149
149
150 1970-01-17 person <person>
150 1970-01-17 person <person>
151
151
152 * new branch
152 * new branch
153 [32a18f097fcc] <foo>
153 [32a18f097fcc] <foo>
154
154
155 1970-01-16 person <person>
155 1970-01-16 person <person>
156
156
157 * c:
157 * c:
158 no user, no domain
158 no user, no domain
159 [10e46f2dcbf4]
159 [10e46f2dcbf4]
160
160
161 1970-01-14 other <other@place>
161 1970-01-14 other <other@place>
162
162
163 * c:
163 * c:
164 no person
164 no person
165 [97054abb4ab8]
165 [97054abb4ab8]
166
166
167 1970-01-13 A. N. Other <other@place>
167 1970-01-13 A. N. Other <other@place>
168
168
169 * b:
169 * b:
170 other 1 other 2
170 other 1 other 2
171
171
172 other 3
172 other 3
173 [b608e9d1a3f0]
173 [b608e9d1a3f0]
174
174
175 1970-01-12 User Name <user@hostname>
175 1970-01-12 User Name <user@hostname>
176
176
177 * a:
177 * a:
178 line 1 line 2
178 line 1 line 2
179 [1e4e1b8f71e0]
179 [1e4e1b8f71e0]
180
180
181 # keys work
181 # keys work
182 author: test
182 author: test
183 author: User Name <user@hostname>
183 author: User Name <user@hostname>
184 author: person
184 author: person
185 author: person
185 author: person
186 author: person
186 author: person
187 author: person
187 author: person
188 author: other@place
188 author: other@place
189 author: A. N. Other <other@place>
189 author: A. N. Other <other@place>
190 author: User Name <user@hostname>
190 author: User Name <user@hostname>
191 author--verbose: test
191 author--verbose: test
192 author--verbose: User Name <user@hostname>
192 author--verbose: User Name <user@hostname>
193 author--verbose: person
193 author--verbose: person
194 author--verbose: person
194 author--verbose: person
195 author--verbose: person
195 author--verbose: person
196 author--verbose: person
196 author--verbose: person
197 author--verbose: other@place
197 author--verbose: other@place
198 author--verbose: A. N. Other <other@place>
198 author--verbose: A. N. Other <other@place>
199 author--verbose: User Name <user@hostname>
199 author--verbose: User Name <user@hostname>
200 author--debug: test
200 author--debug: test
201 author--debug: User Name <user@hostname>
201 author--debug: User Name <user@hostname>
202 author--debug: person
202 author--debug: person
203 author--debug: person
203 author--debug: person
204 author--debug: person
204 author--debug: person
205 author--debug: person
205 author--debug: person
206 author--debug: other@place
206 author--debug: other@place
207 author--debug: A. N. Other <other@place>
207 author--debug: A. N. Other <other@place>
208 author--debug: User Name <user@hostname>
208 author--debug: User Name <user@hostname>
209 branches:
209 branches:
210 branches:
210 branches:
211 branches:
211 branches:
212 branches:
212 branches:
213 branches: foo
213 branches: foo
214 branches:
214 branches:
215 branches:
215 branches:
216 branches:
216 branches:
217 branches:
217 branches:
218 branches--verbose:
218 branches--verbose:
219 branches--verbose:
219 branches--verbose:
220 branches--verbose:
220 branches--verbose:
221 branches--verbose:
221 branches--verbose:
222 branches--verbose: foo
222 branches--verbose: foo
223 branches--verbose:
223 branches--verbose:
224 branches--verbose:
224 branches--verbose:
225 branches--verbose:
225 branches--verbose:
226 branches--verbose:
226 branches--verbose:
227 branches--debug:
227 branches--debug:
228 branches--debug:
228 branches--debug:
229 branches--debug:
229 branches--debug:
230 branches--debug:
230 branches--debug:
231 branches--debug: foo
231 branches--debug: foo
232 branches--debug:
232 branches--debug:
233 branches--debug:
233 branches--debug:
234 branches--debug:
234 branches--debug:
235 branches--debug:
235 branches--debug:
236 date: 1577872860.00
236 date: 1577872860.00
237 date: 1000000.00
237 date: 1000000.00
238 date: 1500001.00
238 date: 1500001.00
239 date: 1500000.00
239 date: 1500000.00
240 date: 1400000.00
240 date: 1400000.00
241 date: 1300000.00
241 date: 1300000.00
242 date: 1200000.00
242 date: 1200000.00
243 date: 1100000.00
243 date: 1100000.00
244 date: 1000000.00
244 date: 1000000.00
245 date--verbose: 1577872860.00
245 date--verbose: 1577872860.00
246 date--verbose: 1000000.00
246 date--verbose: 1000000.00
247 date--verbose: 1500001.00
247 date--verbose: 1500001.00
248 date--verbose: 1500000.00
248 date--verbose: 1500000.00
249 date--verbose: 1400000.00
249 date--verbose: 1400000.00
250 date--verbose: 1300000.00
250 date--verbose: 1300000.00
251 date--verbose: 1200000.00
251 date--verbose: 1200000.00
252 date--verbose: 1100000.00
252 date--verbose: 1100000.00
253 date--verbose: 1000000.00
253 date--verbose: 1000000.00
254 date--debug: 1577872860.00
254 date--debug: 1577872860.00
255 date--debug: 1000000.00
255 date--debug: 1000000.00
256 date--debug: 1500001.00
256 date--debug: 1500001.00
257 date--debug: 1500000.00
257 date--debug: 1500000.00
258 date--debug: 1400000.00
258 date--debug: 1400000.00
259 date--debug: 1300000.00
259 date--debug: 1300000.00
260 date--debug: 1200000.00
260 date--debug: 1200000.00
261 date--debug: 1100000.00
261 date--debug: 1100000.00
262 date--debug: 1000000.00
262 date--debug: 1000000.00
263 desc: third
263 desc: third
264 desc: second
264 desc: second
265 desc: merge
265 desc: merge
266 desc: new head
266 desc: new head
267 desc: new branch
267 desc: new branch
268 desc: no user, no domain
268 desc: no user, no domain
269 desc: no person
269 desc: no person
270 desc: other 1
270 desc: other 1
271 other 2
271 other 2
272
272
273 other 3
273 other 3
274 desc: line 1
274 desc: line 1
275 line 2
275 line 2
276 desc--verbose: third
276 desc--verbose: third
277 desc--verbose: second
277 desc--verbose: second
278 desc--verbose: merge
278 desc--verbose: merge
279 desc--verbose: new head
279 desc--verbose: new head
280 desc--verbose: new branch
280 desc--verbose: new branch
281 desc--verbose: no user, no domain
281 desc--verbose: no user, no domain
282 desc--verbose: no person
282 desc--verbose: no person
283 desc--verbose: other 1
283 desc--verbose: other 1
284 other 2
284 other 2
285
285
286 other 3
286 other 3
287 desc--verbose: line 1
287 desc--verbose: line 1
288 line 2
288 line 2
289 desc--debug: third
289 desc--debug: third
290 desc--debug: second
290 desc--debug: second
291 desc--debug: merge
291 desc--debug: merge
292 desc--debug: new head
292 desc--debug: new head
293 desc--debug: new branch
293 desc--debug: new branch
294 desc--debug: no user, no domain
294 desc--debug: no user, no domain
295 desc--debug: no person
295 desc--debug: no person
296 desc--debug: other 1
296 desc--debug: other 1
297 other 2
297 other 2
298
298
299 other 3
299 other 3
300 desc--debug: line 1
300 desc--debug: line 1
301 line 2
301 line 2
302 file_adds: third
302 file_adds: fourth third
303 file_adds: second
303 file_adds: second
304 file_adds:
304 file_adds:
305 file_adds: d
305 file_adds: d
306 file_adds:
306 file_adds:
307 file_adds:
307 file_adds:
308 file_adds: c
308 file_adds: c
309 file_adds: b
309 file_adds: b
310 file_adds: a
310 file_adds: a
311 file_adds--verbose: third
311 file_adds--verbose: fourth third
312 file_adds--verbose: second
312 file_adds--verbose: second
313 file_adds--verbose:
313 file_adds--verbose:
314 file_adds--verbose: d
314 file_adds--verbose: d
315 file_adds--verbose:
315 file_adds--verbose:
316 file_adds--verbose:
316 file_adds--verbose:
317 file_adds--verbose: c
317 file_adds--verbose: c
318 file_adds--verbose: b
318 file_adds--verbose: b
319 file_adds--verbose: a
319 file_adds--verbose: a
320 file_adds--debug: third
320 file_adds--debug: fourth third
321 file_adds--debug: second
321 file_adds--debug: second
322 file_adds--debug:
322 file_adds--debug:
323 file_adds--debug: d
323 file_adds--debug: d
324 file_adds--debug:
324 file_adds--debug:
325 file_adds--debug:
325 file_adds--debug:
326 file_adds--debug: c
326 file_adds--debug: c
327 file_adds--debug: b
327 file_adds--debug: b
328 file_adds--debug: a
328 file_adds--debug: a
329 file_dels:
329 file_dels: second
330 file_dels:
330 file_dels:
331 file_dels:
331 file_dels:
332 file_dels:
332 file_dels:
333 file_dels:
333 file_dels:
334 file_dels:
334 file_dels:
335 file_dels:
335 file_dels:
336 file_dels:
336 file_dels:
337 file_dels:
337 file_dels:
338 file_dels--verbose: second
338 file_dels--verbose:
339 file_dels--verbose:
339 file_dels--verbose:
340 file_dels--verbose:
340 file_dels--verbose:
341 file_dels--verbose:
341 file_dels--verbose:
342 file_dels--verbose:
342 file_dels--verbose:
343 file_dels--verbose:
343 file_dels--verbose:
344 file_dels--verbose:
344 file_dels--verbose:
345 file_dels--verbose:
345 file_dels--verbose:
346 file_dels--verbose:
346 file_dels--verbose:
347 file_dels--debug: second
347 file_dels--debug:
348 file_dels--debug:
348 file_dels--debug:
349 file_dels--debug:
349 file_dels--debug:
350 file_dels--debug:
350 file_dels--debug:
351 file_dels--debug:
351 file_dels--debug:
352 file_dels--debug:
352 file_dels--debug:
353 file_dels--debug:
353 file_dels--debug:
354 file_dels--debug:
354 file_dels--debug:
355 file_dels--debug:
355 file_dels--debug:
356 file_mods:
356 file_mods:
357 file_mods:
357 file_mods:
358 file_mods:
358 file_mods:
359 file_mods:
359 file_mods:
360 file_mods:
360 file_mods:
361 file_mods: c
361 file_mods: c
362 file_mods:
362 file_mods:
363 file_mods:
363 file_mods:
364 file_mods:
364 file_mods:
365 file_mods--verbose:
365 file_mods--verbose:
366 file_mods--verbose:
366 file_mods--verbose:
367 file_mods--verbose:
367 file_mods--verbose:
368 file_mods--verbose:
368 file_mods--verbose:
369 file_mods--verbose:
369 file_mods--verbose:
370 file_mods--verbose: c
370 file_mods--verbose: c
371 file_mods--verbose:
371 file_mods--verbose:
372 file_mods--verbose:
372 file_mods--verbose:
373 file_mods--verbose:
373 file_mods--verbose:
374 file_mods--debug:
374 file_mods--debug:
375 file_mods--debug:
375 file_mods--debug:
376 file_mods--debug:
376 file_mods--debug:
377 file_mods--debug:
377 file_mods--debug:
378 file_mods--debug:
378 file_mods--debug:
379 file_mods--debug: c
379 file_mods--debug: c
380 file_mods--debug:
380 file_mods--debug:
381 file_mods--debug:
381 file_mods--debug:
382 file_mods--debug:
382 file_mods--debug:
383 files: third
383 file_copies%filecopy:
384 file_copies%filecopy:
385 file_copies%filecopy:
386 file_copies%filecopy:
387 file_copies%filecopy:
388 file_copies%filecopy:
389 file_copies%filecopy:
390 file_copies%filecopy:
391 file_copies%filecopy:
392 file_copies%filecopy--verbose:
393 file_copies%filecopy--verbose:
394 file_copies%filecopy--verbose:
395 file_copies%filecopy--verbose:
396 file_copies%filecopy--verbose:
397 file_copies%filecopy--verbose:
398 file_copies%filecopy--verbose:
399 file_copies%filecopy--verbose:
400 file_copies%filecopy--verbose:
401 file_copies%filecopy--debug:
402 file_copies%filecopy--debug:
403 file_copies%filecopy--debug:
404 file_copies%filecopy--debug:
405 file_copies%filecopy--debug:
406 file_copies%filecopy--debug:
407 file_copies%filecopy--debug:
408 file_copies%filecopy--debug:
409 file_copies%filecopy--debug:
410 files: fourth second third
384 files: second
411 files: second
385 files:
412 files:
386 files: d
413 files: d
387 files:
414 files:
388 files: c
415 files: c
389 files: c
416 files: c
390 files: b
417 files: b
391 files: a
418 files: a
392 files--verbose: third
419 files--verbose: fourth second third
393 files--verbose: second
420 files--verbose: second
394 files--verbose:
421 files--verbose:
395 files--verbose: d
422 files--verbose: d
396 files--verbose:
423 files--verbose:
397 files--verbose: c
424 files--verbose: c
398 files--verbose: c
425 files--verbose: c
399 files--verbose: b
426 files--verbose: b
400 files--verbose: a
427 files--verbose: a
401 files--debug: third
428 files--debug: fourth second third
402 files--debug: second
429 files--debug: second
403 files--debug:
430 files--debug:
404 files--debug: d
431 files--debug: d
405 files--debug:
432 files--debug:
406 files--debug: c
433 files--debug: c
407 files--debug: c
434 files--debug: c
408 files--debug: b
435 files--debug: b
409 files--debug: a
436 files--debug: a
410 manifest: 8:8a0d8faab8b2
437 manifest: 8:79c71159cb0a
411 manifest: 7:f2dbc354b94e
438 manifest: 7:f2dbc354b94e
412 manifest: 6:91015e9dbdd7
439 manifest: 6:91015e9dbdd7
413 manifest: 5:4dc3def4f9b4
440 manifest: 5:4dc3def4f9b4
414 manifest: 4:90ae8dda64e1
441 manifest: 4:90ae8dda64e1
415 manifest: 3:cb5a1327723b
442 manifest: 3:cb5a1327723b
416 manifest: 2:6e0e82995c35
443 manifest: 2:6e0e82995c35
417 manifest: 1:4e8d705b1e53
444 manifest: 1:4e8d705b1e53
418 manifest: 0:a0c8bcbbb45c
445 manifest: 0:a0c8bcbbb45c
419 manifest--verbose: 8:8a0d8faab8b2
446 manifest--verbose: 8:79c71159cb0a
420 manifest--verbose: 7:f2dbc354b94e
447 manifest--verbose: 7:f2dbc354b94e
421 manifest--verbose: 6:91015e9dbdd7
448 manifest--verbose: 6:91015e9dbdd7
422 manifest--verbose: 5:4dc3def4f9b4
449 manifest--verbose: 5:4dc3def4f9b4
423 manifest--verbose: 4:90ae8dda64e1
450 manifest--verbose: 4:90ae8dda64e1
424 manifest--verbose: 3:cb5a1327723b
451 manifest--verbose: 3:cb5a1327723b
425 manifest--verbose: 2:6e0e82995c35
452 manifest--verbose: 2:6e0e82995c35
426 manifest--verbose: 1:4e8d705b1e53
453 manifest--verbose: 1:4e8d705b1e53
427 manifest--verbose: 0:a0c8bcbbb45c
454 manifest--verbose: 0:a0c8bcbbb45c
428 manifest--debug: 8:8a0d8faab8b2eee97dcfccabbcb18f413c9d097b
455 manifest--debug: 8:79c71159cb0a1a84add78e7922a1e5e7be34c499
429 manifest--debug: 7:f2dbc354b94e5ec0b4f10680ee0cee816101d0bf
456 manifest--debug: 7:f2dbc354b94e5ec0b4f10680ee0cee816101d0bf
430 manifest--debug: 6:91015e9dbdd76a6791085d12b0a0ec7fcd22ffbf
457 manifest--debug: 6:91015e9dbdd76a6791085d12b0a0ec7fcd22ffbf
431 manifest--debug: 5:4dc3def4f9b4c6e8de820f6ee74737f91e96a216
458 manifest--debug: 5:4dc3def4f9b4c6e8de820f6ee74737f91e96a216
432 manifest--debug: 4:90ae8dda64e1a876c792bccb9af66284f6018363
459 manifest--debug: 4:90ae8dda64e1a876c792bccb9af66284f6018363
433 manifest--debug: 3:cb5a1327723bada42f117e4c55a303246eaf9ccc
460 manifest--debug: 3:cb5a1327723bada42f117e4c55a303246eaf9ccc
434 manifest--debug: 2:6e0e82995c35d0d57a52aca8da4e56139e06b4b1
461 manifest--debug: 2:6e0e82995c35d0d57a52aca8da4e56139e06b4b1
435 manifest--debug: 1:4e8d705b1e53e3f9375e0e60dc7b525d8211fe55
462 manifest--debug: 1:4e8d705b1e53e3f9375e0e60dc7b525d8211fe55
436 manifest--debug: 0:a0c8bcbbb45c63b90b70ad007bf38961f64f2af0
463 manifest--debug: 0:a0c8bcbbb45c63b90b70ad007bf38961f64f2af0
437 node: 946e2bd9c565394777d74d9669045b39e856e3ea
464 node: 3bdecc1cde0c3d5fa6eaee3d9d9828f6ac468d57
438 node: 29114dbae42b9f078cf2714dbe3a86bba8ec7453
465 node: 29114dbae42b9f078cf2714dbe3a86bba8ec7453
439 node: c7b487c6c50ef1cf464cafdc4f4f5e615fc5999f
466 node: c7b487c6c50ef1cf464cafdc4f4f5e615fc5999f
440 node: 13207e5a10d9fd28ec424934298e176197f2c67f
467 node: 13207e5a10d9fd28ec424934298e176197f2c67f
441 node: 32a18f097fcccf76ef282f62f8a85b3adf8d13c4
468 node: 32a18f097fcccf76ef282f62f8a85b3adf8d13c4
442 node: 10e46f2dcbf4823578cf180f33ecf0b957964c47
469 node: 10e46f2dcbf4823578cf180f33ecf0b957964c47
443 node: 97054abb4ab824450e9164180baf491ae0078465
470 node: 97054abb4ab824450e9164180baf491ae0078465
444 node: b608e9d1a3f0273ccf70fb85fd6866b3482bf965
471 node: b608e9d1a3f0273ccf70fb85fd6866b3482bf965
445 node: 1e4e1b8f71e05681d422154f5421e385fec3454f
472 node: 1e4e1b8f71e05681d422154f5421e385fec3454f
446 node--verbose: 946e2bd9c565394777d74d9669045b39e856e3ea
473 node--verbose: 3bdecc1cde0c3d5fa6eaee3d9d9828f6ac468d57
447 node--verbose: 29114dbae42b9f078cf2714dbe3a86bba8ec7453
474 node--verbose: 29114dbae42b9f078cf2714dbe3a86bba8ec7453
448 node--verbose: c7b487c6c50ef1cf464cafdc4f4f5e615fc5999f
475 node--verbose: c7b487c6c50ef1cf464cafdc4f4f5e615fc5999f
449 node--verbose: 13207e5a10d9fd28ec424934298e176197f2c67f
476 node--verbose: 13207e5a10d9fd28ec424934298e176197f2c67f
450 node--verbose: 32a18f097fcccf76ef282f62f8a85b3adf8d13c4
477 node--verbose: 32a18f097fcccf76ef282f62f8a85b3adf8d13c4
451 node--verbose: 10e46f2dcbf4823578cf180f33ecf0b957964c47
478 node--verbose: 10e46f2dcbf4823578cf180f33ecf0b957964c47
452 node--verbose: 97054abb4ab824450e9164180baf491ae0078465
479 node--verbose: 97054abb4ab824450e9164180baf491ae0078465
453 node--verbose: b608e9d1a3f0273ccf70fb85fd6866b3482bf965
480 node--verbose: b608e9d1a3f0273ccf70fb85fd6866b3482bf965
454 node--verbose: 1e4e1b8f71e05681d422154f5421e385fec3454f
481 node--verbose: 1e4e1b8f71e05681d422154f5421e385fec3454f
455 node--debug: 946e2bd9c565394777d74d9669045b39e856e3ea
482 node--debug: 3bdecc1cde0c3d5fa6eaee3d9d9828f6ac468d57
456 node--debug: 29114dbae42b9f078cf2714dbe3a86bba8ec7453
483 node--debug: 29114dbae42b9f078cf2714dbe3a86bba8ec7453
457 node--debug: c7b487c6c50ef1cf464cafdc4f4f5e615fc5999f
484 node--debug: c7b487c6c50ef1cf464cafdc4f4f5e615fc5999f
458 node--debug: 13207e5a10d9fd28ec424934298e176197f2c67f
485 node--debug: 13207e5a10d9fd28ec424934298e176197f2c67f
459 node--debug: 32a18f097fcccf76ef282f62f8a85b3adf8d13c4
486 node--debug: 32a18f097fcccf76ef282f62f8a85b3adf8d13c4
460 node--debug: 10e46f2dcbf4823578cf180f33ecf0b957964c47
487 node--debug: 10e46f2dcbf4823578cf180f33ecf0b957964c47
461 node--debug: 97054abb4ab824450e9164180baf491ae0078465
488 node--debug: 97054abb4ab824450e9164180baf491ae0078465
462 node--debug: b608e9d1a3f0273ccf70fb85fd6866b3482bf965
489 node--debug: b608e9d1a3f0273ccf70fb85fd6866b3482bf965
463 node--debug: 1e4e1b8f71e05681d422154f5421e385fec3454f
490 node--debug: 1e4e1b8f71e05681d422154f5421e385fec3454f
464 parents:
491 parents:
465 parents: -1:000000000000
492 parents: -1:000000000000
466 parents: 5:13207e5a10d9 4:32a18f097fcc
493 parents: 5:13207e5a10d9 4:32a18f097fcc
467 parents: 3:10e46f2dcbf4
494 parents: 3:10e46f2dcbf4
468 parents:
495 parents:
469 parents:
496 parents:
470 parents:
497 parents:
471 parents:
498 parents:
472 parents:
499 parents:
473 parents--verbose:
500 parents--verbose:
474 parents--verbose: -1:000000000000
501 parents--verbose: -1:000000000000
475 parents--verbose: 5:13207e5a10d9 4:32a18f097fcc
502 parents--verbose: 5:13207e5a10d9 4:32a18f097fcc
476 parents--verbose: 3:10e46f2dcbf4
503 parents--verbose: 3:10e46f2dcbf4
477 parents--verbose:
504 parents--verbose:
478 parents--verbose:
505 parents--verbose:
479 parents--verbose:
506 parents--verbose:
480 parents--verbose:
507 parents--verbose:
481 parents--verbose:
508 parents--verbose:
482 parents--debug: 7:29114dbae42b9f078cf2714dbe3a86bba8ec7453 -1:0000000000000000000000000000000000000000
509 parents--debug: 7:29114dbae42b9f078cf2714dbe3a86bba8ec7453 -1:0000000000000000000000000000000000000000
483 parents--debug: -1:0000000000000000000000000000000000000000 -1:0000000000000000000000000000000000000000
510 parents--debug: -1:0000000000000000000000000000000000000000 -1:0000000000000000000000000000000000000000
484 parents--debug: 5:13207e5a10d9fd28ec424934298e176197f2c67f 4:32a18f097fcccf76ef282f62f8a85b3adf8d13c4
511 parents--debug: 5:13207e5a10d9fd28ec424934298e176197f2c67f 4:32a18f097fcccf76ef282f62f8a85b3adf8d13c4
485 parents--debug: 3:10e46f2dcbf4823578cf180f33ecf0b957964c47 -1:0000000000000000000000000000000000000000
512 parents--debug: 3:10e46f2dcbf4823578cf180f33ecf0b957964c47 -1:0000000000000000000000000000000000000000
486 parents--debug: 3:10e46f2dcbf4823578cf180f33ecf0b957964c47 -1:0000000000000000000000000000000000000000
513 parents--debug: 3:10e46f2dcbf4823578cf180f33ecf0b957964c47 -1:0000000000000000000000000000000000000000
487 parents--debug: 2:97054abb4ab824450e9164180baf491ae0078465 -1:0000000000000000000000000000000000000000
514 parents--debug: 2:97054abb4ab824450e9164180baf491ae0078465 -1:0000000000000000000000000000000000000000
488 parents--debug: 1:b608e9d1a3f0273ccf70fb85fd6866b3482bf965 -1:0000000000000000000000000000000000000000
515 parents--debug: 1:b608e9d1a3f0273ccf70fb85fd6866b3482bf965 -1:0000000000000000000000000000000000000000
489 parents--debug: 0:1e4e1b8f71e05681d422154f5421e385fec3454f -1:0000000000000000000000000000000000000000
516 parents--debug: 0:1e4e1b8f71e05681d422154f5421e385fec3454f -1:0000000000000000000000000000000000000000
490 parents--debug: -1:0000000000000000000000000000000000000000 -1:0000000000000000000000000000000000000000
517 parents--debug: -1:0000000000000000000000000000000000000000 -1:0000000000000000000000000000000000000000
491 rev: 8
518 rev: 8
492 rev: 7
519 rev: 7
493 rev: 6
520 rev: 6
494 rev: 5
521 rev: 5
495 rev: 4
522 rev: 4
496 rev: 3
523 rev: 3
497 rev: 2
524 rev: 2
498 rev: 1
525 rev: 1
499 rev: 0
526 rev: 0
500 rev--verbose: 8
527 rev--verbose: 8
501 rev--verbose: 7
528 rev--verbose: 7
502 rev--verbose: 6
529 rev--verbose: 6
503 rev--verbose: 5
530 rev--verbose: 5
504 rev--verbose: 4
531 rev--verbose: 4
505 rev--verbose: 3
532 rev--verbose: 3
506 rev--verbose: 2
533 rev--verbose: 2
507 rev--verbose: 1
534 rev--verbose: 1
508 rev--verbose: 0
535 rev--verbose: 0
509 rev--debug: 8
536 rev--debug: 8
510 rev--debug: 7
537 rev--debug: 7
511 rev--debug: 6
538 rev--debug: 6
512 rev--debug: 5
539 rev--debug: 5
513 rev--debug: 4
540 rev--debug: 4
514 rev--debug: 3
541 rev--debug: 3
515 rev--debug: 2
542 rev--debug: 2
516 rev--debug: 1
543 rev--debug: 1
517 rev--debug: 0
544 rev--debug: 0
518 tags: tip
545 tags: tip
519 tags:
546 tags:
520 tags:
547 tags:
521 tags:
548 tags:
522 tags:
549 tags:
523 tags:
550 tags:
524 tags:
551 tags:
525 tags:
552 tags:
526 tags:
553 tags:
527 tags--verbose: tip
554 tags--verbose: tip
528 tags--verbose:
555 tags--verbose:
529 tags--verbose:
556 tags--verbose:
530 tags--verbose:
557 tags--verbose:
531 tags--verbose:
558 tags--verbose:
532 tags--verbose:
559 tags--verbose:
533 tags--verbose:
560 tags--verbose:
534 tags--verbose:
561 tags--verbose:
535 tags--verbose:
562 tags--verbose:
536 tags--debug: tip
563 tags--debug: tip
537 tags--debug:
564 tags--debug:
538 tags--debug:
565 tags--debug:
539 tags--debug:
566 tags--debug:
540 tags--debug:
567 tags--debug:
541 tags--debug:
568 tags--debug:
542 tags--debug:
569 tags--debug:
543 tags--debug:
570 tags--debug:
544 tags--debug:
571 tags--debug:
545 diffstat: 1: +1/-0
572 diffstat: 3: +2/-1
546 diffstat: 1: +1/-0
573 diffstat: 1: +1/-0
547 diffstat: 0: +0/-0
574 diffstat: 0: +0/-0
548 diffstat: 1: +1/-0
575 diffstat: 1: +1/-0
549 diffstat: 0: +0/-0
576 diffstat: 0: +0/-0
550 diffstat: 1: +1/-0
577 diffstat: 1: +1/-0
551 diffstat: 1: +4/-0
578 diffstat: 1: +4/-0
552 diffstat: 1: +2/-0
579 diffstat: 1: +2/-0
553 diffstat: 1: +1/-0
580 diffstat: 1: +1/-0
554 diffstat--verbose: 1: +1/-0
581 diffstat--verbose: 3: +2/-1
555 diffstat--verbose: 1: +1/-0
582 diffstat--verbose: 1: +1/-0
556 diffstat--verbose: 0: +0/-0
583 diffstat--verbose: 0: +0/-0
557 diffstat--verbose: 1: +1/-0
584 diffstat--verbose: 1: +1/-0
558 diffstat--verbose: 0: +0/-0
585 diffstat--verbose: 0: +0/-0
559 diffstat--verbose: 1: +1/-0
586 diffstat--verbose: 1: +1/-0
560 diffstat--verbose: 1: +4/-0
587 diffstat--verbose: 1: +4/-0
561 diffstat--verbose: 1: +2/-0
588 diffstat--verbose: 1: +2/-0
562 diffstat--verbose: 1: +1/-0
589 diffstat--verbose: 1: +1/-0
563 diffstat--debug: 1: +1/-0
590 diffstat--debug: 3: +2/-1
564 diffstat--debug: 1: +1/-0
591 diffstat--debug: 1: +1/-0
565 diffstat--debug: 0: +0/-0
592 diffstat--debug: 0: +0/-0
566 diffstat--debug: 1: +1/-0
593 diffstat--debug: 1: +1/-0
567 diffstat--debug: 0: +0/-0
594 diffstat--debug: 0: +0/-0
568 diffstat--debug: 1: +1/-0
595 diffstat--debug: 1: +1/-0
569 diffstat--debug: 1: +4/-0
596 diffstat--debug: 1: +4/-0
570 diffstat--debug: 1: +2/-0
597 diffstat--debug: 1: +2/-0
571 diffstat--debug: 1: +1/-0
598 diffstat--debug: 1: +1/-0
572 extras: branch=default
599 extras: branch=default
573 extras: branch=default
600 extras: branch=default
574 extras: branch=default
601 extras: branch=default
575 extras: branch=default
602 extras: branch=default
576 extras: branch=foo
603 extras: branch=foo
577 extras: branch=default
604 extras: branch=default
578 extras: branch=default
605 extras: branch=default
579 extras: branch=default
606 extras: branch=default
580 extras: branch=default
607 extras: branch=default
581 extras--verbose: branch=default
608 extras--verbose: branch=default
582 extras--verbose: branch=default
609 extras--verbose: branch=default
583 extras--verbose: branch=default
610 extras--verbose: branch=default
584 extras--verbose: branch=default
611 extras--verbose: branch=default
585 extras--verbose: branch=foo
612 extras--verbose: branch=foo
586 extras--verbose: branch=default
613 extras--verbose: branch=default
587 extras--verbose: branch=default
614 extras--verbose: branch=default
588 extras--verbose: branch=default
615 extras--verbose: branch=default
589 extras--verbose: branch=default
616 extras--verbose: branch=default
590 extras--debug: branch=default
617 extras--debug: branch=default
591 extras--debug: branch=default
618 extras--debug: branch=default
592 extras--debug: branch=default
619 extras--debug: branch=default
593 extras--debug: branch=default
620 extras--debug: branch=default
594 extras--debug: branch=foo
621 extras--debug: branch=foo
595 extras--debug: branch=default
622 extras--debug: branch=default
596 extras--debug: branch=default
623 extras--debug: branch=default
597 extras--debug: branch=default
624 extras--debug: branch=default
598 extras--debug: branch=default
625 extras--debug: branch=default
599 # filters work
626 # filters work
600
627
601 hostname
628 hostname
602
629
603
630
604
631
605
632
606 place
633 place
607 place
634 place
608 hostname
635 hostname
609 test
636 test
610 User Name
637 User Name
611 person
638 person
612 person
639 person
613 person
640 person
614 person
641 person
615 other
642 other
616 A. N. Other
643 A. N. Other
617 User Name
644 User Name
618 test
645 test
619 user
646 user
620 person
647 person
621 person
648 person
622 person
649 person
623 person
650 person
624 other
651 other
625 other
652 other
626 user
653 user
627 in the future
654 in the future
628 Wed Jan 01 10:01:00 2020 +0000
655 Wed Jan 01 10:01:00 2020 +0000
629 Mon Jan 12 13:46:40 1970 +0000
656 Mon Jan 12 13:46:40 1970 +0000
630 Sun Jan 18 08:40:01 1970 +0000
657 Sun Jan 18 08:40:01 1970 +0000
631 Sun Jan 18 08:40:00 1970 +0000
658 Sun Jan 18 08:40:00 1970 +0000
632 Sat Jan 17 04:53:20 1970 +0000
659 Sat Jan 17 04:53:20 1970 +0000
633 Fri Jan 16 01:06:40 1970 +0000
660 Fri Jan 16 01:06:40 1970 +0000
634 Wed Jan 14 21:20:00 1970 +0000
661 Wed Jan 14 21:20:00 1970 +0000
635 Tue Jan 13 17:33:20 1970 +0000
662 Tue Jan 13 17:33:20 1970 +0000
636 Mon Jan 12 13:46:40 1970 +0000
663 Mon Jan 12 13:46:40 1970 +0000
637 2020-01-01 10:01 +0000
664 2020-01-01 10:01 +0000
638 1970-01-12 13:46 +0000
665 1970-01-12 13:46 +0000
639 1970-01-18 08:40 +0000
666 1970-01-18 08:40 +0000
640 1970-01-18 08:40 +0000
667 1970-01-18 08:40 +0000
641 1970-01-17 04:53 +0000
668 1970-01-17 04:53 +0000
642 1970-01-16 01:06 +0000
669 1970-01-16 01:06 +0000
643 1970-01-14 21:20 +0000
670 1970-01-14 21:20 +0000
644 1970-01-13 17:33 +0000
671 1970-01-13 17:33 +0000
645 1970-01-12 13:46 +0000
672 1970-01-12 13:46 +0000
646 2020-01-01 10:01:00 +0000
673 2020-01-01 10:01:00 +0000
647 1970-01-12 13:46:40 +0000
674 1970-01-12 13:46:40 +0000
648 1970-01-18 08:40:01 +0000
675 1970-01-18 08:40:01 +0000
649 1970-01-18 08:40:00 +0000
676 1970-01-18 08:40:00 +0000
650 1970-01-17 04:53:20 +0000
677 1970-01-17 04:53:20 +0000
651 1970-01-16 01:06:40 +0000
678 1970-01-16 01:06:40 +0000
652 1970-01-14 21:20:00 +0000
679 1970-01-14 21:20:00 +0000
653 1970-01-13 17:33:20 +0000
680 1970-01-13 17:33:20 +0000
654 1970-01-12 13:46:40 +0000
681 1970-01-12 13:46:40 +0000
655 Wed, 01 Jan 2020 10:01:00 +0000
682 Wed, 01 Jan 2020 10:01:00 +0000
656 Mon, 12 Jan 1970 13:46:40 +0000
683 Mon, 12 Jan 1970 13:46:40 +0000
657 Sun, 18 Jan 1970 08:40:01 +0000
684 Sun, 18 Jan 1970 08:40:01 +0000
658 Sun, 18 Jan 1970 08:40:00 +0000
685 Sun, 18 Jan 1970 08:40:00 +0000
659 Sat, 17 Jan 1970 04:53:20 +0000
686 Sat, 17 Jan 1970 04:53:20 +0000
660 Fri, 16 Jan 1970 01:06:40 +0000
687 Fri, 16 Jan 1970 01:06:40 +0000
661 Wed, 14 Jan 1970 21:20:00 +0000
688 Wed, 14 Jan 1970 21:20:00 +0000
662 Tue, 13 Jan 1970 17:33:20 +0000
689 Tue, 13 Jan 1970 17:33:20 +0000
663 Mon, 12 Jan 1970 13:46:40 +0000
690 Mon, 12 Jan 1970 13:46:40 +0000
664 third
691 third
665 second
692 second
666 merge
693 merge
667 new head
694 new head
668 new branch
695 new branch
669 no user, no domain
696 no user, no domain
670 no person
697 no person
671 other 1
698 other 1
672 line 1
699 line 1
673 946e2bd9c565
700 3bdecc1cde0c
674 29114dbae42b
701 29114dbae42b
675 c7b487c6c50e
702 c7b487c6c50e
676 13207e5a10d9
703 13207e5a10d9
677 32a18f097fcc
704 32a18f097fcc
678 10e46f2dcbf4
705 10e46f2dcbf4
679 97054abb4ab8
706 97054abb4ab8
680 b608e9d1a3f0
707 b608e9d1a3f0
681 1e4e1b8f71e0
708 1e4e1b8f71e0
682 <changeset author="test"/>
709 <changeset author="test"/>
683 <changeset author="User Name &lt;user@hostname&gt;"/>
710 <changeset author="User Name &lt;user@hostname&gt;"/>
684 <changeset author="person"/>
711 <changeset author="person"/>
685 <changeset author="person"/>
712 <changeset author="person"/>
686 <changeset author="person"/>
713 <changeset author="person"/>
687 <changeset author="person"/>
714 <changeset author="person"/>
688 <changeset author="other@place"/>
715 <changeset author="other@place"/>
689 <changeset author="A. N. Other &lt;other@place&gt;"/>
716 <changeset author="A. N. Other &lt;other@place&gt;"/>
690 <changeset author="User Name &lt;user@hostname&gt;"/>
717 <changeset author="User Name &lt;user@hostname&gt;"/>
691 # formatnode filter works
718 # formatnode filter works
692 # quiet
719 # quiet
693 1e4e1b8f71e0
720 1e4e1b8f71e0
694 # normal
721 # normal
695 1e4e1b8f71e0
722 1e4e1b8f71e0
696 # verbose
723 # verbose
697 1e4e1b8f71e0
724 1e4e1b8f71e0
698 # debug
725 # debug
699 1e4e1b8f71e05681d422154f5421e385fec3454f
726 1e4e1b8f71e05681d422154f5421e385fec3454f
700 # error on syntax
727 # error on syntax
701 abort: t:3: unmatched quotes
728 abort: t:3: unmatched quotes
702 # latesttag
729 # latesttag
703 adding file
730 adding file
704 adding head1
731 adding head1
705 adding head2
732 adding head2
706 created new head
733 created new head
707 # No tag set
734 # No tag set
708 5: null+5
735 5: null+5
709 4: null+4
736 4: null+4
710 3: null+3
737 3: null+3
711 2: null+3
738 2: null+3
712 1: null+2
739 1: null+2
713 0: null+1
740 0: null+1
714 # one common tag: longuest path wins
741 # one common tag: longuest path wins
715 6: t1+4
742 6: t1+4
716 5: t1+3
743 5: t1+3
717 4: t1+2
744 4: t1+2
718 3: t1+1
745 3: t1+1
719 2: t1+1
746 2: t1+1
720 1: t1+0
747 1: t1+0
721 0: null+1
748 0: null+1
722 # one ancestor tag: more recent wins
749 # one ancestor tag: more recent wins
723 7: t2+3
750 7: t2+3
724 6: t2+2
751 6: t2+2
725 5: t2+1
752 5: t2+1
726 4: t1+2
753 4: t1+2
727 3: t1+1
754 3: t1+1
728 2: t2+0
755 2: t2+0
729 1: t1+0
756 1: t1+0
730 0: null+1
757 0: null+1
731 # two branch tags: more recent wins
758 # two branch tags: more recent wins
732 8: t3+5
759 8: t3+5
733 7: t3+4
760 7: t3+4
734 6: t3+3
761 6: t3+3
735 5: t3+2
762 5: t3+2
736 4: t3+1
763 4: t3+1
737 3: t3+0
764 3: t3+0
738 2: t2+0
765 2: t2+0
739 1: t1+0
766 1: t1+0
740 0: null+1
767 0: null+1
741 # merged tag overrides
768 # merged tag overrides
742 10: t5+5
769 10: t5+5
743 9: t5+4
770 9: t5+4
744 8: t5+3
771 8: t5+3
745 7: t5+2
772 7: t5+2
746 6: t5+1
773 6: t5+1
747 5: t5+0
774 5: t5+0
748 4: at3:t3+1
775 4: at3:t3+1
749 3: at3:t3+0
776 3: at3:t3+0
750 2: t2+0
777 2: t2+0
751 1: t1+0
778 1: t1+0
752 0: null+1
779 0: null+1
753 # done
780 # done
General Comments 0
You need to be logged in to leave comments. Login now