Show More
@@ -67,8 +67,6 b' status.relative = yes' | |||
|
67 | 67 | update.check = noconflict |
|
68 | 68 | # Show conflicts information in `hg status` |
|
69 | 69 | status.verbose = True |
|
70 | # Collapse entire directories that contain only unknown files | |
|
71 | status.terse = u | |
|
72 | 70 | |
|
73 | 71 | [diff] |
|
74 | 72 | git = 1 |
@@ -109,8 +109,11 b' combining patterns with root and pattern' | |||
|
109 | 109 | |
|
110 | 110 | tweaking defaults works |
|
111 | 111 | $ hg status --cwd a --config ui.tweakdefaults=yes |
|
112 | ? . | |
|
113 | ? ../b/ | |
|
112 | ? 1/in_a_1 | |
|
113 | ? in_a | |
|
114 | ? ../b/1/in_b_1 | |
|
115 | ? ../b/2/in_b_2 | |
|
116 | ? ../b/in_b | |
|
114 | 117 | ? ../in_root |
|
115 | 118 | $ HGPLAIN=1 hg status --cwd a --config ui.tweakdefaults=yes |
|
116 | 119 | ? a/1/in_a_1 (glob) |
@@ -120,8 +123,11 b' tweaking defaults works' | |||
|
120 | 123 | ? b/in_b (glob) |
|
121 | 124 | ? in_root |
|
122 | 125 | $ HGPLAINEXCEPT=tweakdefaults hg status --cwd a --config ui.tweakdefaults=yes |
|
123 | ? . | |
|
124 | ? ../b/ | |
|
126 | ? 1/in_a_1 | |
|
127 | ? in_a | |
|
128 | ? ../b/1/in_b_1 | |
|
129 | ? ../b/2/in_b_2 | |
|
130 | ? ../b/in_b | |
|
125 | 131 | ? ../in_root (glob) |
|
126 | 132 | |
|
127 | 133 | relative paths can be requested |
@@ -151,8 +157,11 b' if relative paths are explicitly off, tw' | |||
|
151 | 157 | > status.relative = False |
|
152 | 158 | > EOF |
|
153 | 159 | $ hg status --cwd a --config ui.tweakdefaults=yes |
|
154 | ? a/ | |
|
155 |
? |
|
|
160 | ? a/1/in_a_1 | |
|
161 | ? a/in_a | |
|
162 | ? b/1/in_b_1 | |
|
163 | ? b/2/in_b_2 | |
|
164 | ? b/in_b | |
|
156 | 165 | ? in_root |
|
157 | 166 | |
|
158 | 167 | $ cd .. |
General Comments 0
You need to be logged in to leave comments.
Login now