Show More
@@ -593,6 +593,14 b' class dirstate(object):' | |||
|
593 | 593 | else: |
|
594 | 594 | assert False, 'unreachable' |
|
595 | 595 | |
|
596 | @requires_parents_change | |
|
597 | def update_parent_file_data(self, f, filedata): | |
|
598 | """update the information about the content of a file | |
|
599 | ||
|
600 | This function should be called within a `dirstate.parentchange` context. | |
|
601 | """ | |
|
602 | self.normal(f, parentfiledata=filedata) | |
|
603 | ||
|
596 | 604 | def _addpath( |
|
597 | 605 | self, |
|
598 | 606 | f, |
General Comments 0
You need to be logged in to leave comments.
Login now