##// END OF EJS Templates
Display symlink or executable bit with manifest -v...
Patrick Mezard -
r5405:8feb33c2 default
parent child Browse files
Show More
@@ -1884,8 +1884,8 b' def manifest(ui, repo, node=None, rev=No'
1884 The manifest is the list of files being version controlled. If no revision
1884 The manifest is the list of files being version controlled. If no revision
1885 is given then the first parent of the working directory is used.
1885 is given then the first parent of the working directory is used.
1886
1886
1887 With -v flag, print file permissions. With --debug flag, print
1887 With -v flag, print file permissions, symlink and executable bits. With
1888 file revision hashes.
1888 --debug flag, print file revision hashes.
1889 """
1889 """
1890
1890
1891 if rev and node:
1891 if rev and node:
@@ -1902,7 +1902,9 b' def manifest(ui, repo, node=None, rev=No'
1902 if ui.debugflag:
1902 if ui.debugflag:
1903 ui.write("%40s " % hex(m[f]))
1903 ui.write("%40s " % hex(m[f]))
1904 if ui.verbose:
1904 if ui.verbose:
1905 ui.write("%3s " % (m.execf(f) and "755" or "644"))
1905 type = m.execf(f) and "*" or m.linkf(f) and "@" or " "
1906 perm = m.execf(f) and "755" or "644"
1907 ui.write("%3s %1s " % (perm, type))
1906 ui.write("%s\n" % f)
1908 ui.write("%s\n" % f)
1907
1909
1908 def merge(ui, repo, node=None, force=None, rev=None):
1910 def merge(ui, repo, node=None, force=None, rev=None):
@@ -4,7 +4,7 b' user: test'
4 date: Mon Jan 12 13:46:40 1970 +0000
4 date: Mon Jan 12 13:46:40 1970 +0000
5 summary: test
5 summary: test
6
6
7 b789fdd96dc2f3bd229c1dd8eedf0fc60e2b68e3 644 a
7 b789fdd96dc2f3bd229c1dd8eedf0fc60e2b68e3 644 a
8 a
8 a
9 checking changesets
9 checking changesets
10 checking manifests
10 checking manifests
@@ -17,13 +17,13 b' o 1 "1: add bar quux; copy foo to copie'
17 o 0 "0: add foo baz dir/" files: baz dir/file dir/file2 foo
17 o 0 "0: add foo baz dir/" files: baz dir/file dir/file2 foo
18
18
19 % final file versions in this repo:
19 % final file versions in this repo:
20 9463f52fe115e377cf2878d4fc548117211063f2 644 bar
20 9463f52fe115e377cf2878d4fc548117211063f2 644 bar
21 94c1be4dfde2ee8d78db8bbfcf81210813307c3d 644 baz
21 94c1be4dfde2ee8d78db8bbfcf81210813307c3d 644 baz
22 6ca237634e1f6bee1b6db94292fb44f092a25842 644 copied
22 6ca237634e1f6bee1b6db94292fb44f092a25842 644 copied
23 3e20847584beff41d7cd16136b7331ab3d754be0 644 dir/file
23 3e20847584beff41d7cd16136b7331ab3d754be0 644 dir/file
24 75e6d3f8328f5f6ace6bf10b98df793416a09dca 644 dir/file2
24 75e6d3f8328f5f6ace6bf10b98df793416a09dca 644 dir/file2
25 9a7b52012991e4873687192c3e17e61ba3e837a3 644 foo
25 9a7b52012991e4873687192c3e17e61ba3e837a3 644 foo
26 bc3eca3f47023a3e70ca0d8cc95a22a6827db19d 644 quux
26 bc3eca3f47023a3e70ca0d8cc95a22a6827db19d 644 quux
27 copied renamed from foo:2ed2a3912a0b24502043eae84ee4b279c18b90dd
27 copied renamed from foo:2ed2a3912a0b24502043eae84ee4b279c18b90dd
28
28
29 % foo: skip unwanted merges; use 1st parent in 1st merge, 2nd in 2nd
29 % foo: skip unwanted merges; use 1st parent in 1st merge, 2nd in 2nd
@@ -35,7 +35,7 b' o 1 "2: change foo" files: foo'
35 |
35 |
36 o 0 "0: add foo baz dir/" files: foo
36 o 0 "0: add foo baz dir/" files: foo
37
37
38 9a7b52012991e4873687192c3e17e61ba3e837a3 644 foo
38 9a7b52012991e4873687192c3e17e61ba3e837a3 644 foo
39 % bar: merges are not merges anymore
39 % bar: merges are not merges anymore
40 o 4 "7: second merge; change bar" files: bar
40 o 4 "7: second merge; change bar" files: bar
41 |
41 |
@@ -47,7 +47,7 b' o 1 "3: change bar quux" files: bar'
47 |
47 |
48 o 0 "1: add bar quux; copy foo to copied" files: bar
48 o 0 "1: add bar quux; copy foo to copied" files: bar
49
49
50 9463f52fe115e377cf2878d4fc548117211063f2 644 bar
50 9463f52fe115e377cf2878d4fc548117211063f2 644 bar
51 % baz: 1st merge is not a merge anymore; 2nd still is
51 % baz: 1st merge is not a merge anymore; 2nd still is
52 o 4 "7: second merge; change bar" files: baz
52 o 4 "7: second merge; change bar" files: baz
53 |\
53 |\
@@ -59,7 +59,7 b' o 1 "4: first merge; change bar baz" fi'
59 |
59 |
60 o 0 "0: add foo baz dir/" files: baz
60 o 0 "0: add foo baz dir/" files: baz
61
61
62 94c1be4dfde2ee8d78db8bbfcf81210813307c3d 644 baz
62 94c1be4dfde2ee8d78db8bbfcf81210813307c3d 644 baz
63 % foo quux: we add additional merges when they are interesting
63 % foo quux: we add additional merges when they are interesting
64 o 8 "8: change foo" files: foo
64 o 8 "8: change foo" files: foo
65 |
65 |
@@ -79,15 +79,15 b' o 1 "1: add bar quux; copy foo to copie'
79 |
79 |
80 o 0 "0: add foo baz dir/" files: foo
80 o 0 "0: add foo baz dir/" files: foo
81
81
82 9a7b52012991e4873687192c3e17e61ba3e837a3 644 foo
82 9a7b52012991e4873687192c3e17e61ba3e837a3 644 foo
83 bc3eca3f47023a3e70ca0d8cc95a22a6827db19d 644 quux
83 bc3eca3f47023a3e70ca0d8cc95a22a6827db19d 644 quux
84 % bar quux: partial conversion
84 % bar quux: partial conversion
85 o 1 "3: change bar quux" files: bar quux
85 o 1 "3: change bar quux" files: bar quux
86 |
86 |
87 o 0 "1: add bar quux; copy foo to copied" files: bar quux
87 o 0 "1: add bar quux; copy foo to copied" files: bar quux
88
88
89 b79105bedc55102f394e90a789c9c380117c1b4a 644 bar
89 b79105bedc55102f394e90a789c9c380117c1b4a 644 bar
90 db0421cc6b685a458c8d86c7d5c004f94429ea23 644 quux
90 db0421cc6b685a458c8d86c7d5c004f94429ea23 644 quux
91 % bar quux: complete the partial conversion
91 % bar quux: complete the partial conversion
92 o 4 "7: second merge; change bar" files: bar
92 o 4 "7: second merge; change bar" files: bar
93 |
93 |
@@ -99,12 +99,12 b' o 1 "3: change bar quux" files: bar quu'
99 |
99 |
100 o 0 "1: add bar quux; copy foo to copied" files: bar quux
100 o 0 "1: add bar quux; copy foo to copied" files: bar quux
101
101
102 9463f52fe115e377cf2878d4fc548117211063f2 644 bar
102 9463f52fe115e377cf2878d4fc548117211063f2 644 bar
103 bc3eca3f47023a3e70ca0d8cc95a22a6827db19d 644 quux
103 bc3eca3f47023a3e70ca0d8cc95a22a6827db19d 644 quux
104 % foo: partial conversion
104 % foo: partial conversion
105 o 0 "0: add foo baz dir/" files: foo
105 o 0 "0: add foo baz dir/" files: foo
106
106
107 2ed2a3912a0b24502043eae84ee4b279c18b90dd 644 foo
107 2ed2a3912a0b24502043eae84ee4b279c18b90dd 644 foo
108 % foo: complete the partial conversion
108 % foo: complete the partial conversion
109 o 3 "8: change foo" files: foo
109 o 3 "8: change foo" files: foo
110 |
110 |
@@ -114,11 +114,11 b' o 1 "2: change foo" files: foo'
114 |
114 |
115 o 0 "0: add foo baz dir/" files: foo
115 o 0 "0: add foo baz dir/" files: foo
116
116
117 9a7b52012991e4873687192c3e17e61ba3e837a3 644 foo
117 9a7b52012991e4873687192c3e17e61ba3e837a3 644 foo
118 % copied: copied file; source not included in new repo
118 % copied: copied file; source not included in new repo
119 o 0 "1: add bar quux; copy foo to copied" files: copied
119 o 0 "1: add bar quux; copy foo to copied" files: copied
120
120
121 2ed2a3912a0b24502043eae84ee4b279c18b90dd 644 copied
121 2ed2a3912a0b24502043eae84ee4b279c18b90dd 644 copied
122 copied not renamed
122 copied not renamed
123 % foo copied: copied file; source included in new repo
123 % foo copied: copied file; source included in new repo
124 o 4 "8: change foo" files: foo
124 o 4 "8: change foo" files: foo
@@ -131,8 +131,8 b' o 1 "1: add bar quux; copy foo to copie'
131 |
131 |
132 o 0 "0: add foo baz dir/" files: foo
132 o 0 "0: add foo baz dir/" files: foo
133
133
134 6ca237634e1f6bee1b6db94292fb44f092a25842 644 copied
134 6ca237634e1f6bee1b6db94292fb44f092a25842 644 copied
135 9a7b52012991e4873687192c3e17e61ba3e837a3 644 foo
135 9a7b52012991e4873687192c3e17e61ba3e837a3 644 foo
136 copied renamed from foo:2ed2a3912a0b24502043eae84ee4b279c18b90dd
136 copied renamed from foo:2ed2a3912a0b24502043eae84ee4b279c18b90dd
137 o 4 "8: change foo" files: foo2
137 o 4 "8: change foo" files: foo2
138 |
138 |
@@ -144,9 +144,9 b' o 1 "1: add bar quux; copy foo to copie'
144 |
144 |
145 o 0 "0: add foo baz dir/" files: dir2/file foo2
145 o 0 "0: add foo baz dir/" files: dir2/file foo2
146
146
147 e5e3d520be9be45937d0b06b004fadcd6c221fa2 644 copied2
147 e5e3d520be9be45937d0b06b004fadcd6c221fa2 644 copied2
148 3e20847584beff41d7cd16136b7331ab3d754be0 644 dir2/file
148 3e20847584beff41d7cd16136b7331ab3d754be0 644 dir2/file
149 9a7b52012991e4873687192c3e17e61ba3e837a3 644 foo2
149 9a7b52012991e4873687192c3e17e61ba3e837a3 644 foo2
150 copied2 renamed from foo2:2ed2a3912a0b24502043eae84ee4b279c18b90dd
150 copied2 renamed from foo2:2ed2a3912a0b24502043eae84ee4b279c18b90dd
151 copied:
151 copied:
152 foo
152 foo
@@ -44,10 +44,10 b' o | 2 "add quux" files: quux'
44 |/
44 |/
45 o 0 "add foo" files: foo
45 o 0 "add foo" files: foo
46
46
47 245a3b8bc653999c2b22cdabd517ccb47aecafdf 644 bar
47 245a3b8bc653999c2b22cdabd517ccb47aecafdf 644 bar
48 354ae8da6e890359ef49ade27b68bbc361f3ca88 644 baz
48 354ae8da6e890359ef49ade27b68bbc361f3ca88 644 baz
49 9277c9cc8dd4576fc01a17939b4351e5ada93466 644 foo
49 9277c9cc8dd4576fc01a17939b4351e5ada93466 644 foo
50 88dfeab657e8cf2cef3dec67b914f49791ae76b1 644 quux
50 88dfeab657e8cf2cef3dec67b914f49791ae76b1 644 quux
51 % foo bar baz: octopus merge
51 % foo bar baz: octopus merge
52 o 8 "Discard change to foo" files: foo
52 o 8 "Discard change to foo" files: foo
53 |\
53 |\
@@ -67,9 +67,9 b' o | | 3 "add baz" files: baz'
67 |/
67 |/
68 o 0 "add foo" files: foo
68 o 0 "add foo" files: foo
69
69
70 245a3b8bc653999c2b22cdabd517ccb47aecafdf 644 bar
70 245a3b8bc653999c2b22cdabd517ccb47aecafdf 644 bar
71 354ae8da6e890359ef49ade27b68bbc361f3ca88 644 baz
71 354ae8da6e890359ef49ade27b68bbc361f3ca88 644 baz
72 9277c9cc8dd4576fc01a17939b4351e5ada93466 644 foo
72 9277c9cc8dd4576fc01a17939b4351e5ada93466 644 foo
73 % foo baz quux: only some parents of an octopus merge; "discard" a head
73 % foo baz quux: only some parents of an octopus merge; "discard" a head
74 o 6 "Discard change to foo" files: foo
74 o 6 "Discard change to foo" files: foo
75 |
75 |
@@ -85,6 +85,6 b' o | 1 "change foo" files: foo'
85 |/
85 |/
86 o 0 "add foo" files: foo
86 o 0 "add foo" files: foo
87
87
88 354ae8da6e890359ef49ade27b68bbc361f3ca88 644 baz
88 354ae8da6e890359ef49ade27b68bbc361f3ca88 644 baz
89 9277c9cc8dd4576fc01a17939b4351e5ada93466 644 foo
89 9277c9cc8dd4576fc01a17939b4351e5ada93466 644 foo
90 88dfeab657e8cf2cef3dec67b914f49791ae76b1 644 quux
90 88dfeab657e8cf2cef3dec67b914f49791ae76b1 644 quux
@@ -14,6 +14,6 b' summary: add empty2'
14 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
14 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
15 (branch merge, don't forget to commit)
15 (branch merge, don't forget to commit)
16 M empty2
16 M empty2
17 b80de5d138758541c5f05265ad144ab9fa86d1db 644 empty1
17 b80de5d138758541c5f05265ad144ab9fa86d1db 644 empty1
18 b80de5d138758541c5f05265ad144ab9fa86d1db 644 empty2
18 b80de5d138758541c5f05265ad144ab9fa86d1db 644 empty2
19 b80de5d138758541c5f05265ad144ab9fa86d1db 644 empty3
19 b80de5d138758541c5f05265ad144ab9fa86d1db 644 empty3
@@ -43,17 +43,17 b' summary: test'
43 4 275 29 3 4 f6c172c6198c 448a8c5e42f1 7c5dc2e857f2
43 4 275 29 3 4 f6c172c6198c 448a8c5e42f1 7c5dc2e857f2
44
44
45 1
45 1
46 79d7492df40aa0fa093ec4209be78043c181f094 644 a
46 79d7492df40aa0fa093ec4209be78043c181f094 644 a
47 2ed2a3912a0b24502043eae84ee4b279c18b90dd 644 b
47 2ed2a3912a0b24502043eae84ee4b279c18b90dd 644 b
48 2
48 2
49 2ed2a3912a0b24502043eae84ee4b279c18b90dd 644 a
49 2ed2a3912a0b24502043eae84ee4b279c18b90dd 644 a
50 79d7492df40aa0fa093ec4209be78043c181f094 644 b
50 79d7492df40aa0fa093ec4209be78043c181f094 644 b
51 3
51 3
52 79d7492df40aa0fa093ec4209be78043c181f094 644 a
52 79d7492df40aa0fa093ec4209be78043c181f094 644 a
53 79d7492df40aa0fa093ec4209be78043c181f094 644 b
53 79d7492df40aa0fa093ec4209be78043c181f094 644 b
54 4
54 4
55 79d7492df40aa0fa093ec4209be78043c181f094 644 a
55 79d7492df40aa0fa093ec4209be78043c181f094 644 a
56 79d7492df40aa0fa093ec4209be78043c181f094 644 b
56 79d7492df40aa0fa093ec4209be78043c181f094 644 b
57
57
58 rev offset length base linkrev nodeid p1 p2
58 rev offset length base linkrev nodeid p1 p2
59 0 0 5 0 0 2ed2a3912a0b 000000000000 000000000000
59 0 0 5 0 0 2ed2a3912a0b 000000000000 000000000000
@@ -60,10 +60,10 b" quux: we shouldn't have a merge here"
60 0 0 3 0 0 b8e02f643373 000000000000 000000000000
60 0 0 3 0 0 b8e02f643373 000000000000 000000000000
61 1 3 5 1 3 6128c0f33108 b8e02f643373 000000000000
61 1 3 5 1 3 6128c0f33108 b8e02f643373 000000000000
62 manifest entries should match tips of all files
62 manifest entries should match tips of all files
63 33d1fb69067a0139622a3fa3b7ba1cdb1367972e 644 bar
63 33d1fb69067a0139622a3fa3b7ba1cdb1367972e 644 bar
64 2ffeddde1b65b4827f6746174a145474129fa2ce 644 baz
64 2ffeddde1b65b4827f6746174a145474129fa2ce 644 baz
65 aa27919ee4303cfd575e1fb932dd64d75aa08be4 644 foo
65 aa27919ee4303cfd575e1fb932dd64d75aa08be4 644 foo
66 6128c0f33108e8cfbb4e0824d13ae48b466d7280 644 quux
66 6128c0f33108e8cfbb4e0824d13ae48b466d7280 644 quux
67 everything should be clean now
67 everything should be clean now
68 checking changesets
68 checking changesets
69 checking manifests
69 checking manifests
@@ -55,11 +55,11 b' a'
55 % binary files and regular patch hunks
55 % binary files and regular patch hunks
56 applying patch from stdin
56 applying patch from stdin
57 foo
57 foo
58 045c85ba38952325e126c70962cc0f9d9077bc67 644 binary
58 045c85ba38952325e126c70962cc0f9d9077bc67 644 binary
59 % many binary files
59 % many binary files
60 applying patch from stdin
60 applying patch from stdin
61 045c85ba38952325e126c70962cc0f9d9077bc67 644 mbinary1
61 045c85ba38952325e126c70962cc0f9d9077bc67 644 mbinary1
62 a874b471193996e7cb034bb301cac7bdaf3e3f46 644 mbinary2
62 a874b471193996e7cb034bb301cac7bdaf3e3f46 644 mbinary2
63 % filenames with spaces
63 % filenames with spaces
64 applying patch from stdin
64 applying patch from stdin
65 foo
65 foo
@@ -13,7 +13,7 b' 1 files updated, 0 files merged, 0 files'
13 (branch merge, don't forget to commit)
13 (branch merge, don't forget to commit)
14 n 0 -2 unset foo
14 n 0 -2 unset foo
15 M foo
15 M foo
16 c6fc755d7e68f49f880599da29f15add41f42f5a 644 foo
16 c6fc755d7e68f49f880599da29f15add41f42f5a 644 foo
17 rev offset length base linkrev nodeid p1 p2
17 rev offset length base linkrev nodeid p1 p2
18 0 0 5 0 0 2ed2a3912a0b 000000000000 000000000000
18 0 0 5 0 0 2ed2a3912a0b 000000000000 000000000000
19 1 5 9 1 1 6f4310b00b9a 2ed2a3912a0b 000000000000
19 1 5 9 1 1 6f4310b00b9a 2ed2a3912a0b 000000000000
@@ -2,10 +2,10 b' adding a'
2 adding b/a
2 adding b/a
3 a
3 a
4 b/a
4 b/a
5 644 a
5 644 a
6 644 b/a
6 644 b/a
7 b789fdd96dc2f3bd229c1dd8eedf0fc60e2b68e3 644 a
7 b789fdd96dc2f3bd229c1dd8eedf0fc60e2b68e3 644 a
8 b789fdd96dc2f3bd229c1dd8eedf0fc60e2b68e3 644 b/a
8 b789fdd96dc2f3bd229c1dd8eedf0fc60e2b68e3 644 b/a
9 a
9 a
10 a
10 a
11 b/a
11 b/a
@@ -11,7 +11,7 b' added 1 changesets with 1 changes to 1 f'
11 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
11 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
12 (branch merge, don't forget to commit)
12 (branch merge, don't forget to commit)
13 bar should remain deleted.
13 bar should remain deleted.
14 f9b0e817f6a48de3564c6b2957687c5e7297c5a0 644 foo
14 f9b0e817f6a48de3564c6b2957687c5e7297c5a0 644 foo
15 pulling from ../A2
15 pulling from ../A2
16 searching for changes
16 searching for changes
17 adding changesets
17 adding changesets
@@ -22,4 +22,4 b' added 1 changesets with 0 changes to 0 f'
22 0 files updated, 0 files merged, 1 files removed, 0 files unresolved
22 0 files updated, 0 files merged, 1 files removed, 0 files unresolved
23 (branch merge, don't forget to commit)
23 (branch merge, don't forget to commit)
24 bar should remain deleted.
24 bar should remain deleted.
25 f9b0e817f6a48de3564c6b2957687c5e7297c5a0 644 foo
25 f9b0e817f6a48de3564c6b2957687c5e7297c5a0 644 foo
@@ -17,7 +17,7 b' checking files'
17 1 files, 1 changesets, 1 total revisions
17 1 files, 1 changesets, 1 total revisions
18 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
18 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
19 foo
19 foo
20 2ed2a3912a0b24502043eae84ee4b279c18b90dd 644 foo
20 2ed2a3912a0b24502043eae84ee4b279c18b90dd 644 foo
21 pulling from http://localhost/
21 pulling from http://localhost/
22 searching for changes
22 searching for changes
23 no changes found
23 no changes found
@@ -1,9 +1,9 b''
1 05f9e54f4c9b86b09099803d8b49a50edcb4eaab 644 a
1 05f9e54f4c9b86b09099803d8b49a50edcb4eaab 644 a
2 54837d97f2932a8194e69745a280a2c11e61ff9c 644 b
2 54837d97f2932a8194e69745a280a2c11e61ff9c 644 b
3 (the rawcommit command is deprecated)
3 (the rawcommit command is deprecated)
4 05f9e54f4c9b86b09099803d8b49a50edcb4eaab 644 a
4 05f9e54f4c9b86b09099803d8b49a50edcb4eaab 644 a
5 54837d97f2932a8194e69745a280a2c11e61ff9c 644 b
5 54837d97f2932a8194e69745a280a2c11e61ff9c 644 b
6 76d5e637cbec1bcc04a5a3fa4bcc7d13f6847c00 644 c
6 76d5e637cbec1bcc04a5a3fa4bcc7d13f6847c00 644 c
7 changeset: 2:e110db3db549
7 changeset: 2:e110db3db549
8 tag: tip
8 tag: tip
9 user: test
9 user: test
@@ -14,8 +14,8 b' 2'
14
14
15
15
16 (the rawcommit command is deprecated)
16 (the rawcommit command is deprecated)
17 05f9e54f4c9b86b09099803d8b49a50edcb4eaab 644 a
17 05f9e54f4c9b86b09099803d8b49a50edcb4eaab 644 a
18 76d5e637cbec1bcc04a5a3fa4bcc7d13f6847c00 644 c
18 76d5e637cbec1bcc04a5a3fa4bcc7d13f6847c00 644 c
19 changeset: 3:20652cf30cc0
19 changeset: 3:20652cf30cc0
20 tag: tip
20 tag: tip
21 user: test
21 user: test
@@ -26,8 +26,8 b' 3'
26
26
27
27
28 (the rawcommit command is deprecated)
28 (the rawcommit command is deprecated)
29 d6e3c4976c13feb1728cd3ac851abaf7256a5c23 644 a
29 d6e3c4976c13feb1728cd3ac851abaf7256a5c23 644 a
30 76d5e637cbec1bcc04a5a3fa4bcc7d13f6847c00 644 c
30 76d5e637cbec1bcc04a5a3fa4bcc7d13f6847c00 644 c
31 changeset: 4:42556b925639
31 changeset: 4:42556b925639
32 tag: tip
32 tag: tip
33 user: test
33 user: test
@@ -38,9 +38,9 b' 4'
38
38
39
39
40 (the rawcommit command is deprecated)
40 (the rawcommit command is deprecated)
41 05f9e54f4c9b86b09099803d8b49a50edcb4eaab 644 a
41 05f9e54f4c9b86b09099803d8b49a50edcb4eaab 644 a
42 54837d97f2932a8194e69745a280a2c11e61ff9c 644 b
42 54837d97f2932a8194e69745a280a2c11e61ff9c 644 b
43 3570202ceac2b52517df64ebd0a062cb0d8fe33a 644 c
43 3570202ceac2b52517df64ebd0a062cb0d8fe33a 644 c
44 changeset: 4:42556b925639
44 changeset: 4:42556b925639
45 user: test
45 user: test
46 date: Mon Jan 12 13:46:40 1970 +0000
46 date: Mon Jan 12 13:46:40 1970 +0000
@@ -50,8 +50,8 b' 4'
50
50
51
51
52 (the rawcommit command is deprecated)
52 (the rawcommit command is deprecated)
53 d6e3c4976c13feb1728cd3ac851abaf7256a5c23 644 a
53 d6e3c4976c13feb1728cd3ac851abaf7256a5c23 644 a
54 76d5e637cbec1bcc04a5a3fa4bcc7d13f6847c00 644 c
54 76d5e637cbec1bcc04a5a3fa4bcc7d13f6847c00 644 c
55 changeset: 6:8a0c9254b0ab
55 changeset: 6:8a0c9254b0ab
56 tag: tip
56 tag: tip
57 parent: 4:42556b925639
57 parent: 4:42556b925639
@@ -63,8 +63,8 b' 6'
63
63
64
64
65 (the rawcommit command is deprecated)
65 (the rawcommit command is deprecated)
66 d6e3c4976c13feb1728cd3ac851abaf7256a5c23 644 a
66 d6e3c4976c13feb1728cd3ac851abaf7256a5c23 644 a
67 76d5e637cbec1bcc04a5a3fa4bcc7d13f6847c00 644 c
67 76d5e637cbec1bcc04a5a3fa4bcc7d13f6847c00 644 c
68 changeset: 7:a5a6e1f312b9
68 changeset: 7:a5a6e1f312b9
69 tag: tip
69 tag: tip
70 user: test
70 user: test
@@ -21,4 +21,4 b' 1 files, 2 changesets, 2 total revisions'
21 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
21 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
22 foo
22 foo
23 bar
23 bar
24 6f4310b00b9a147241b071a60c28a650827fb03d 644 foo
24 6f4310b00b9a147241b071a60c28a650827fb03d 644 foo
General Comments 0
You need to be logged in to leave comments. Login now