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