comparison tests/test-help.out @ 2661:5c10b7ed3411

status: add -c (clean) and -A (all files) options also add new localrepo.status what is more uniform than localrepo.changes. localrepo.changes is deprecated and will go away soon.
author Vadim Gelfer <vadim.gelfer@gmail.com>
date Thu, 20 Jul 2006 16:21:07 -0700
parents 02b6fa7bbfbf
children 8b02af865990
comparison
equal deleted inserted replaced
2640:02b6fa7bbfbf 2661:5c10b7ed3411
183 -X --exclude exclude names matching the given patterns 183 -X --exclude exclude names matching the given patterns
184 hg status [OPTION]... [FILE]... 184 hg status [OPTION]... [FILE]...
185 185
186 show changed files in the working directory 186 show changed files in the working directory
187 187
188 Show changed files in the repository. If names are 188 Show status of files in the repository. If names are given, only
189 given, only files that match are shown. 189 files that match are shown. Files that are clean or ignored, are
190 not listed unless -c (clean), -i (ignored) or -A is given.
190 191
191 The codes used to show the status of files are: 192 The codes used to show the status of files are:
192 M = modified 193 M = modified
193 A = added 194 A = added
194 R = removed 195 R = removed
196 C = clean
195 ! = deleted, but still tracked 197 ! = deleted, but still tracked
196 ? = not tracked 198 ? = not tracked
197 I = ignored (not shown by default) 199 I = ignored (not shown by default)
198 = the previous added file was copied from here 200 = the previous added file was copied from here
199 201
200 aliases: st 202 aliases: st
201 203
202 options: 204 options:
203 205
206 -A --all show status of all files
204 -m --modified show only modified files 207 -m --modified show only modified files
205 -a --added show only added files 208 -a --added show only added files
206 -r --removed show only removed files 209 -r --removed show only removed files
207 -d --deleted show only deleted (but tracked) files 210 -d --deleted show only deleted (but tracked) files
211 -c --clean show only files without changes
208 -u --unknown show only unknown (not tracked) files 212 -u --unknown show only unknown (not tracked) files
209 -i --ignored show ignored files 213 -i --ignored show ignored files
210 -n --no-status hide status prefix 214 -n --no-status hide status prefix
211 -C --copies show source of copied files 215 -C --copies show source of copied files
212 -0 --print0 end filenames with NUL, for use with xargs 216 -0 --print0 end filenames with NUL, for use with xargs