##// END OF EJS Templates
status: don't warn about missing files present in base revision (issue1323)
Matt Mackall -
r7067:40d105a1 default
parent child Browse files
Show More
@@ -959,6 +959,13 b' class localrepository(repo.repository):'
959 959 match = match or match_.always(self.root, self.getcwd())
960 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 969 if working: # we need to scan the working dir
963 970 s = self.dirstate.status(match, listignored, listclean, listunknown)
964 971 cmp, modified, added, removed, deleted, unknown, ignored, clean = s
General Comments 0
You need to be logged in to leave comments. Login now