##// END OF EJS Templates
add 'm' state to dirstates...
mpm@selenic.com -
r231:15e7c6ce default
parent child Browse files
Show More
@@ -210,6 +210,7 b' class dirstate:'
210 def update(self, files, state):
210 def update(self, files, state):
211 ''' current states:
211 ''' current states:
212 n normal
212 n normal
213 m needs merging
213 i invalid
214 i invalid
214 r marked for removal
215 r marked for removal
215 a marked for addition'''
216 a marked for addition'''
@@ -541,6 +542,8 b' class localrepository:'
541 added.append(fn)
542 added.append(fn)
542 elif fcmp(fn):
543 elif fcmp(fn):
543 changed.append(fn)
544 changed.append(fn)
545 elif c[0] == 'm':
546 changed.append(fn)
544 elif c[0] == 'a':
547 elif c[0] == 'a':
545 added.append(fn)
548 added.append(fn)
546 elif c[0] == 'r':
549 elif c[0] == 'r':
General Comments 0
You need to be logged in to leave comments. Login now