Show More
@@ -959,6 +959,13 b' class localrepository(repo.repository):' | |||||
959 | match = match or match_.always(self.root, self.getcwd()) |
|
959 | match = match or match_.always(self.root, self.getcwd()) | |
960 | listignored, listclean, listunknown = ignored, clean, unknown |
|
960 | listignored, listclean, listunknown = ignored, clean, unknown | |
961 |
|
961 | |||
|
962 | if not parentworking: | |||
|
963 | def bad(f, msg): | |||
|
964 | if f not in ctx1: | |||
|
965 | self.ui.warn('%s: %s\n' % (self.dirstate.pathto(f), msg)) | |||
|
966 | return False | |||
|
967 | match.bad = bad | |||
|
968 | ||||
962 | if working: # we need to scan the working dir |
|
969 | if working: # we need to scan the working dir | |
963 | s = self.dirstate.status(match, listignored, listclean, listunknown) |
|
970 | s = self.dirstate.status(match, listignored, listclean, listunknown) | |
964 | cmp, modified, added, removed, deleted, unknown, ignored, clean = s |
|
971 | cmp, modified, added, removed, deleted, unknown, ignored, clean = s |
General Comments 0
You need to be logged in to leave comments.
Login now