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