Show More
@@ -46,8 +46,6 b' tests' | |||||
46 |
|
46 | |||
47 | Getting the node of `null` |
|
47 | Getting the node of `null` | |
48 |
|
48 | |||
49 | $ hg init test-repo |
|
|||
50 | $ cd test-repo |
|
|||
51 | $ hg log -r null -T "{node}\n" |
|
49 | $ hg log -r null -T "{node}\n" | |
52 | 0000000000000000000000000000000000000000 |
|
50 | 0000000000000000000000000000000000000000 | |
53 |
|
51 | |||
@@ -56,3 +54,101 b' Getting basic changeset inforation about' | |||||
56 | $ hg log -r null -T "{node}\n{date}\n" |
|
54 | $ hg log -r null -T "{node}\n{date}\n" | |
57 | 0000000000000000000000000000000000000000 |
|
55 | 0000000000000000000000000000000000000000 | |
58 | 0.00 |
|
56 | 0.00 | |
|
57 | ||||
|
58 | Getting status of null | |||
|
59 | ||||
|
60 | $ hg status --change null | |||
|
61 | debug.filters: computing revision filter for "visible" | |||
|
62 | ||||
|
63 | Getting status of working copy | |||
|
64 | ||||
|
65 | $ hg status | |||
|
66 | debug.filters: computing revision filter for "visible" | |||
|
67 | M c | |||
|
68 | A d | |||
|
69 | R a | |||
|
70 | ! b | |||
|
71 | ||||
|
72 | Getting data about the working copy parent | |||
|
73 | ||||
|
74 | $ hg log -r '.' -T "{node}\n{date}\n" | |||
|
75 | debug.filters: computing revision filter for "visible" | |||
|
76 | c2932ca7786be30b67154d541a8764fae5532261 | |||
|
77 | 0.00 | |||
|
78 | ||||
|
79 | Getting working copy diff | |||
|
80 | ||||
|
81 | $ hg diff | |||
|
82 | debug.filters: computing revision filter for "visible" | |||
|
83 | diff -r c2932ca7786be30b67154d541a8764fae5532261 a | |||
|
84 | --- a/a Thu Jan 01 00:00:00 1970 +0000 | |||
|
85 | +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 | |||
|
86 | @@ -1,1 +0,0 @@ | |||
|
87 | -a | |||
|
88 | diff -r c2932ca7786be30b67154d541a8764fae5532261 c | |||
|
89 | --- a/c Thu Jan 01 00:00:00 1970 +0000 | |||
|
90 | +++ b/c Thu Jan 01 00:00:00 1970 +0000 | |||
|
91 | @@ -1,1 +1,1 @@ | |||
|
92 | -c | |||
|
93 | +c1 | |||
|
94 | diff -r c2932ca7786be30b67154d541a8764fae5532261 d | |||
|
95 | --- /dev/null Thu Jan 01 00:00:00 1970 +0000 | |||
|
96 | +++ b/d Thu Jan 01 00:00:00 1970 +0000 | |||
|
97 | @@ -0,0 +1,1 @@ | |||
|
98 | +d | |||
|
99 | $ hg diff --change . | |||
|
100 | debug.filters: computing revision filter for "visible" | |||
|
101 | diff -r 05293e5dd8d1ae4f84a8520a11c6f97cad26deca -r c2932ca7786be30b67154d541a8764fae5532261 c | |||
|
102 | --- /dev/null Thu Jan 01 00:00:00 1970 +0000 | |||
|
103 | +++ b/c Thu Jan 01 00:00:00 1970 +0000 | |||
|
104 | @@ -0,0 +1,1 @@ | |||
|
105 | +c | |||
|
106 | diff -r 05293e5dd8d1ae4f84a8520a11c6f97cad26deca -r c2932ca7786be30b67154d541a8764fae5532261 z | |||
|
107 | --- a/z Thu Jan 01 00:00:00 1970 +0000 | |||
|
108 | +++ b/z Thu Jan 01 00:00:00 1970 +0000 | |||
|
109 | @@ -1,2 +1,3 @@ | |||
|
110 | some line | |||
|
111 | in a | |||
|
112 | +file | |||
|
113 | ||||
|
114 | exporting the current changeset | |||
|
115 | ||||
|
116 | $ hg export | |||
|
117 | debug.filters: computing revision filter for "visible" | |||
|
118 | exporting patch: | |||
|
119 | # HG changeset patch | |||
|
120 | # User test | |||
|
121 | # Date 0 0 | |||
|
122 | # Thu Jan 01 00:00:00 1970 +0000 | |||
|
123 | # Node ID c2932ca7786be30b67154d541a8764fae5532261 | |||
|
124 | # Parent 05293e5dd8d1ae4f84a8520a11c6f97cad26deca | |||
|
125 | c | |||
|
126 | ||||
|
127 | diff -r 05293e5dd8d1ae4f84a8520a11c6f97cad26deca -r c2932ca7786be30b67154d541a8764fae5532261 c | |||
|
128 | --- /dev/null Thu Jan 01 00:00:00 1970 +0000 | |||
|
129 | +++ b/c Thu Jan 01 00:00:00 1970 +0000 | |||
|
130 | @@ -0,0 +1,1 @@ | |||
|
131 | +c | |||
|
132 | diff -r 05293e5dd8d1ae4f84a8520a11c6f97cad26deca -r c2932ca7786be30b67154d541a8764fae5532261 z | |||
|
133 | --- a/z Thu Jan 01 00:00:00 1970 +0000 | |||
|
134 | +++ b/z Thu Jan 01 00:00:00 1970 +0000 | |||
|
135 | @@ -1,2 +1,3 @@ | |||
|
136 | some line | |||
|
137 | in a | |||
|
138 | +file | |||
|
139 | ||||
|
140 | using annotate | |||
|
141 | ||||
|
142 | - file with a single change | |||
|
143 | ||||
|
144 | $ hg annotate a | |||
|
145 | debug.filters: computing revision filter for "visible" | |||
|
146 | 0: a | |||
|
147 | ||||
|
148 | - file with multiple change | |||
|
149 | ||||
|
150 | $ hg annotate z | |||
|
151 | debug.filters: computing revision filter for "visible" | |||
|
152 | 0: some line | |||
|
153 | 1: in a | |||
|
154 | 2: file |
General Comments 0
You need to be logged in to leave comments.
Login now