Show More
@@ -243,7 +243,7 b' class gitdirstate:' | |||
|
243 | 243 | return DirstateItem() |
|
244 | 244 | return entry |
|
245 | 245 | |
|
246 | def normalize(self, path): | |
|
246 | def normalize(self, path, isknown=False, ignoremissing=False): | |
|
247 | 247 | normed = util.normcase(path) |
|
248 | 248 | assert normed == path, b"TODO handling of case folding: %s != %s" % ( |
|
249 | 249 | normed, |
@@ -262,11 +262,13 b' class gitdirstate:' | |||
|
262 | 262 | # # TODO what the heck is this |
|
263 | 263 | _filecache = set() |
|
264 | 264 | |
|
265 | @property | |
|
265 | 266 | def is_changing_parents(self): |
|
266 | 267 | # TODO: we need to implement the context manager bits and |
|
267 | 268 | # correctly stage/revert index edits. |
|
268 | 269 | return False |
|
269 | 270 | |
|
271 | @property | |
|
270 | 272 | def is_changing_any(self): |
|
271 | 273 | # TODO: we need to implement the context manager bits and |
|
272 | 274 | # correctly stage/revert index edits. |
General Comments 0
You need to be logged in to leave comments.
Login now