##// END OF EJS Templates
Fix test-debugcomplete for new --certificate option
Lee Cantey -
r4861:01ba6272 default
parent child Browse files
Show More
@@ -1,156 +1,157 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 debugdate
64 debugdate
65 debugindex
65 debugindex
66 debugindexdot
66 debugindexdot
67 debuginstall
67 debuginstall
68 debugrawcommit
68 debugrawcommit
69 debugrebuildstate
69 debugrebuildstate
70 debugrename
70 debugrename
71 debugsetparents
71 debugsetparents
72 debugstate
72 debugstate
73 debugwalk
73 debugwalk
74
74
75 % Do not show the alias of a debug command if there are other candidates
75 % Do not show the alias of a debug command if there are other candidates
76 % (this should hide rawcommit)
76 % (this should hide rawcommit)
77 recover
77 recover
78 remove
78 remove
79 rename
79 rename
80 revert
80 revert
81 rollback
81 rollback
82 root
82 root
83
83
84 % Show the alias of a debug command if there are no other candidates
84 % Show the alias of a debug command if there are no other candidates
85 rawcommit
85 rawcommit
86
86
87 % Show the global options
87 % Show the global options
88 --config
88 --config
89 --cwd
89 --cwd
90 --debug
90 --debug
91 --debugger
91 --debugger
92 --encoding
92 --encoding
93 --encodingmode
93 --encodingmode
94 --help
94 --help
95 --lsprof
95 --lsprof
96 --noninteractive
96 --noninteractive
97 --profile
97 --profile
98 --quiet
98 --quiet
99 --repository
99 --repository
100 --time
100 --time
101 --traceback
101 --traceback
102 --verbose
102 --verbose
103 --version
103 --version
104 -R
104 -R
105 -h
105 -h
106 -q
106 -q
107 -v
107 -v
108 -y
108 -y
109
109
110 % Show the options for the "serve" command
110 % Show the options for the "serve" command
111 --accesslog
111 --accesslog
112 --address
112 --address
113 --certificate
113 --config
114 --config
114 --cwd
115 --cwd
115 --daemon
116 --daemon
116 --daemon-pipefds
117 --daemon-pipefds
117 --debug
118 --debug
118 --debugger
119 --debugger
119 --encoding
120 --encoding
120 --encodingmode
121 --encodingmode
121 --errorlog
122 --errorlog
122 --help
123 --help
123 --ipv6
124 --ipv6
124 --lsprof
125 --lsprof
125 --name
126 --name
126 --noninteractive
127 --noninteractive
127 --pid-file
128 --pid-file
128 --port
129 --port
129 --profile
130 --profile
130 --quiet
131 --quiet
131 --repository
132 --repository
132 --stdio
133 --stdio
133 --style
134 --style
134 --templates
135 --templates
135 --time
136 --time
136 --traceback
137 --traceback
137 --verbose
138 --verbose
138 --version
139 --version
139 --webdir-conf
140 --webdir-conf
140 -6
141 -6
141 -A
142 -A
142 -E
143 -E
143 -R
144 -R
144 -a
145 -a
145 -d
146 -d
146 -h
147 -h
147 -n
148 -n
148 -p
149 -p
149 -q
150 -q
150 -t
151 -t
151 -v
152 -v
152 -y
153 -y
153
154
154 % Show an error if we use --options with an ambiguous abbreviation
155 % Show an error if we use --options with an ambiguous abbreviation
155 hg: command 's' is ambiguous:
156 hg: command 's' is ambiguous:
156 serve showconfig status
157 serve showconfig status
General Comments 0
You need to be logged in to leave comments. Login now