##// END OF EJS Templates
Change C to M in status
mpm@selenic.com -
r746:9095e345 default
parent child Browse files
Show More
@@ -332,7 +332,7 b' status [options] [files]::'
332
332
333 The codes used to show the status of files are:
333 The codes used to show the status of files are:
334
334
335 C = changed
335 M = changed
336 A = added
336 A = added
337 R = removed
337 R = removed
338 ? = not tracked
338 ? = not tracked
@@ -967,7 +967,7 b' def serve(ui, repo, **opts):'
967 def status(ui, repo, *pats, **opts):
967 def status(ui, repo, *pats, **opts):
968 '''show changed files in the working directory
968 '''show changed files in the working directory
969
969
970 C = changed
970 M = modified
971 A = added
971 A = added
972 R = removed
972 R = removed
973 ? = not tracked'''
973 ? = not tracked'''
@@ -976,7 +976,7 b' def status(ui, repo, *pats, **opts):'
976 (c, a, d, u) = map(lambda x: relfilter(repo, x), (c, a, d, u))
976 (c, a, d, u) = map(lambda x: relfilter(repo, x), (c, a, d, u))
977
977
978 for f in c:
978 for f in c:
979 ui.write("C ", f, "\n")
979 ui.write("M ", f, "\n")
980 for f in a:
980 for f in a:
981 ui.write("A ", f, "\n")
981 ui.write("A ", f, "\n")
982 for f in d:
982 for f in d:
General Comments 0
You need to be logged in to leave comments. Login now