##// END OF EJS Templates
update test-debugcomplete
Matt Mackall -
r3782:a8725ae1 default
parent child Browse files
Show More
@@ -1,150 +1,154 b''
1 % Show all commands except debug commands
1 % Show all commands except debug commands
2 add
2 add
3 addremove
3 addremove
4 annotate
4 annotate
5 archive
5 archive
6 backout
6 backout
7 branch
7 branch
8 branches
8 branches
9 bundle
9 bundle
10 cat
10 cat
11 clone
11 clone
12 commit
12 commit
13 copy
13 copy
14 diff
14 diff
15 export
15 export
16 grep
16 grep
17 heads
17 heads
18 help
18 help
19 identify
19 identify
20 import
20 import
21 incoming
21 incoming
22 init
22 init
23 locate
23 locate
24 log
24 log
25 manifest
25 manifest
26 merge
26 merge
27 outgoing
27 outgoing
28 parents
28 parents
29 paths
29 paths
30 pull
30 pull
31 push
31 push
32 recover
32 recover
33 remove
33 remove
34 rename
34 rename
35 revert
35 revert
36 rollback
36 rollback
37 root
37 root
38 serve
38 serve
39 showconfig
39 showconfig
40 status
40 status
41 tag
41 tag
42 tags
42 tags
43 tip
43 tip
44 unbundle
44 unbundle
45 update
45 update
46 verify
46 verify
47 version
47 version
48
48
49 % Show all commands that start with "a"
49 % Show all commands that start with "a"
50 add
50 add
51 addremove
51 addremove
52 annotate
52 annotate
53 archive
53 archive
54
54
55 % Do not show debug commands if there are other candidates
55 % Do not show debug commands if there are other candidates
56 diff
56 diff
57
57
58 % Show debug commands if there are no other candidates
58 % Show debug commands if there are no other candidates
59 debugancestor
59 debugancestor
60 debugcheckstate
60 debugcheckstate
61 debugcomplete
61 debugcomplete
62 debugconfig
62 debugconfig
63 debugdata
63 debugdata
64 debugindex
64 debugindex
65 debugindexdot
65 debugindexdot
66 debugrawcommit
66 debugrawcommit
67 debugrebuildstate
67 debugrebuildstate
68 debugrename
68 debugrename
69 debugsetparents
69 debugsetparents
70 debugstate
70 debugstate
71 debugwalk
71 debugwalk
72
72
73 % Do not show the alias of a debug command if there are other candidates
73 % Do not show the alias of a debug command if there are other candidates
74 % (this should hide rawcommit)
74 % (this should hide rawcommit)
75 recover
75 recover
76 remove
76 remove
77 rename
77 rename
78 revert
78 revert
79 rollback
79 rollback
80 root
80 root
81
81
82 % Show the alias of a debug command if there are no other candidates
82 % Show the alias of a debug command if there are no other candidates
83 rawcommit
83 rawcommit
84
84
85 % Show the global options
85 % Show the global options
86 --config
86 --config
87 --cwd
87 --cwd
88 --debug
88 --debug
89 --debugger
89 --debugger
90 --encoding
91 --encodingmode
90 --help
92 --help
91 --lsprof
93 --lsprof
92 --noninteractive
94 --noninteractive
93 --profile
95 --profile
94 --quiet
96 --quiet
95 --repository
97 --repository
96 --time
98 --time
97 --traceback
99 --traceback
98 --verbose
100 --verbose
99 --version
101 --version
100 -R
102 -R
101 -h
103 -h
102 -q
104 -q
103 -v
105 -v
104 -y
106 -y
105
107
106 % Show the options for the "serve" command
108 % Show the options for the "serve" command
107 --accesslog
109 --accesslog
108 --address
110 --address
109 --config
111 --config
110 --cwd
112 --cwd
111 --daemon
113 --daemon
112 --daemon-pipefds
114 --daemon-pipefds
113 --debug
115 --debug
114 --debugger
116 --debugger
117 --encoding
118 --encodingmode
115 --errorlog
119 --errorlog
116 --help
120 --help
117 --ipv6
121 --ipv6
118 --lsprof
122 --lsprof
119 --name
123 --name
120 --noninteractive
124 --noninteractive
121 --pid-file
125 --pid-file
122 --port
126 --port
123 --profile
127 --profile
124 --quiet
128 --quiet
125 --repository
129 --repository
126 --stdio
130 --stdio
127 --style
131 --style
128 --templates
132 --templates
129 --time
133 --time
130 --traceback
134 --traceback
131 --verbose
135 --verbose
132 --version
136 --version
133 --webdir-conf
137 --webdir-conf
134 -6
138 -6
135 -A
139 -A
136 -E
140 -E
137 -R
141 -R
138 -a
142 -a
139 -d
143 -d
140 -h
144 -h
141 -n
145 -n
142 -p
146 -p
143 -q
147 -q
144 -t
148 -t
145 -v
149 -v
146 -y
150 -y
147
151
148 % Show an error if we use --options with an ambiguous abbreviation
152 % Show an error if we use --options with an ambiguous abbreviation
149 hg: command 's' is ambiguous:
153 hg: command 's' is ambiguous:
150 serve showconfig status
154 serve showconfig status
General Comments 0
You need to be logged in to leave comments. Login now