Change C to M in status

This commit is contained in:
mpm@selenic.com 2005-07-21 12:24:42 -05:00
parent 0da7c8cf44
commit 1698a5cd7e
2 changed files with 3 additions and 3 deletions

View File

@ -332,7 +332,7 @@ status [options] [files]::
The codes used to show the status of files are:
C = changed
M = changed
A = added
R = removed
? = not tracked

View File

@ -967,7 +967,7 @@ def serve(ui, repo, **opts):
def status(ui, repo, *pats, **opts):
'''show changed files in the working directory
C = changed
M = modified
A = added
R = removed
? = not tracked'''
@ -976,7 +976,7 @@ def status(ui, repo, *pats, **opts):
(c, a, d, u) = map(lambda x: relfilter(repo, x), (c, a, d, u))
for f in c:
ui.write("C ", f, "\n")
ui.write("M ", f, "\n")
for f in a:
ui.write("A ", f, "\n")
for f in d: