##// END OF EJS Templates
context: schedule file prefetch before comparing for cleanliness...
Kyle Lippincott -
r41189:f18f665b default
parent child Browse files
Show More
@@ -2018,6 +2018,12 b' class overlayworkingctx(committablectx):'
2018 to resolve a conflict.
2018 to resolve a conflict.
2019 """
2019 """
2020 keys = []
2020 keys = []
2021 # This won't be perfect, but can help performance significantly when
2022 # using things like remotefilelog.
2023 scmutil.prefetchfiles(
2024 self.repo(), [self.p1().rev()],
2025 matchmod.match('', '', patterns=self._cache.keys(), exact=True))
2026
2021 for path in self._cache.keys():
2027 for path in self._cache.keys():
2022 cache = self._cache[path]
2028 cache = self._cache[path]
2023 try:
2029 try:
General Comments 0
You need to be logged in to leave comments. Login now